Methods
| Type Params |
Return Type |
Name and description |
<T> |
static Promise<T> |
createBoundPromise(T value) - See Also:
- PromiseFactory.createBoundPromise
|
<K, V> |
static Promise<Map<K, V>> |
createPromise(Map<K, V> map) - See Also:
- PromiseFactory.createPromise
|
<K, V> |
static Promise<Map<K, V>> |
createPromise(Map<K, V> map, List<PromiseDecorator> decorators) - See Also:
- PromiseFactory.createPromise
|
<T> |
static Promise<T> |
createPromise(Closure<T>[] c) - See Also:
- PromiseFactory.createPromise
|
|
static Promise<Object> |
createPromise() - See Also:
- PromiseFactory.createPromise
|
<T> |
static Promise<T> |
createPromise(Class<T> returnType) - See Also:
- PromiseFactory.createPromise
|
<T> |
static Promise<T> |
createPromise(Closure<T> c, List<PromiseDecorator> decorators) - See Also:
- PromiseFactory.createPromise
|
<T> |
static Promise<List<T>> |
createPromise(List<Closure<T>> closures, List<PromiseDecorator> decorators) - See Also:
- PromiseFactory.createPromise
|
<T> |
static Promise<List<T>> |
createPromise(Promise<T>[] promises) - See Also:
- PromiseFactory.createPromise
|
|
static PromiseFactory |
getPromiseFactory()
|
<T> |
static Promise<List<T>> |
onComplete(List<Promise<T>> promises, Closure<?> callable) - See Also:
- PromiseFactory.onComplete
|
<T> |
static Promise<List<T>> |
onError(List<Promise<T>> promises, Closure<?> callable) - See Also:
- PromiseFactory.onError
|
|
static void |
setPromiseFactory(PromiseFactory promiseFactory)
|
<T> |
static Promise<T> |
task(Closure<T> c) - See Also:
- PromiseFactory.createPromise
|
<K, V> |
static Promise<Map<K, V>> |
tasks(Map<K, V> map) - See Also:
- PromiseFactory.createPromise
|
<T> |
static Promise<T> |
tasks(Closure<T>[] c) - See Also:
- PromiseFactory.createPromise
|
<T> |
static Promise<List<T>> |
tasks(List<Closure<T>> closures) - See Also:
- PromiseFactory.createPromise
|
<T> |
static List<T> |
waitAll(Promise<T>[] promises) - See Also:
- PromiseFactory.waitAll
|
<T> |
static List<T> |
waitAll(List<Promise<T>> promises) - See Also:
- PromiseFactory.waitAll
|
<T> |
static List<T> |
waitAll(List<Promise<T>> promises, long timeout, TimeUnit units) - See Also:
- PromiseFactory.waitAll
|