Factory class for working with Promise instances
Type Params | Return Type | Name and description |
---|---|---|
<T> |
static Promise<T> |
createBoundPromise(T value) @see PromiseFactory#createBoundPromise(java.lang.Object) |
<K, V> |
static Promise<java.util.Map<K, V>> |
createPromise(java.util.Map<K, V> map) @see PromiseFactory#createPromise(java.util.Map) |
<T> |
static Promise<T> |
createPromise(groovy.lang.Closure<T>... c) @see PromiseFactory#createPromise(groovy.lang.Closure[]) |
<T> |
static Promise<T> |
createPromise(groovy.lang.Closure<T> c, java.util.List<PromiseDecorator> decorators) @see PromiseFactory#createPromise(groovy.lang.Closure, java.util.List) |
<T> |
static Promise<java.util.List<T>> |
createPromise(java.util.List<groovy.lang.Closure<T>> closures, java.util.List<PromiseDecorator> decorators) @see PromiseFactory#createPromise(java.util.List, java.util.List) |
<T> |
static Promise<java.util.List<T>> |
createPromise(Promise<T>... promises) @see PromiseFactory#createPromise(grails.async.Promise[]) |
|
static PromiseFactory |
getPromiseFactory() |
<T> |
static Promise<java.util.List<T>> |
onComplete(java.util.List<Promise<T>> promises, groovy.lang.Closure<?> callable) @see PromiseFactory#onComplete(java.util.List, groovy.lang.Closure) |
<T> |
static Promise<java.util.List<T>> |
onError(java.util.List<Promise<T>> promises, groovy.lang.Closure<?> callable) @see PromiseFactory#onError(java.util.List, groovy.lang.Closure) |
|
static void |
setPromiseFactory(PromiseFactory promiseFactory) |
<T> |
static Promise<T> |
task(groovy.lang.Closure<T> c) @see PromiseFactory#createPromise(groovy.lang.Closure[]) |
<K, V> |
static Promise<java.util.Map<K, V>> |
tasks(java.util.Map<K, V> map) @see PromiseFactory#createPromise(java.util.Map) |
<T> |
static Promise<T> |
tasks(groovy.lang.Closure<T>... c) @see PromiseFactory#createPromise(groovy.lang.Closure[]) |
<T> |
static Promise<java.util.List<T>> |
tasks(java.util.List<groovy.lang.Closure<T>> closures) @see PromiseFactory#createPromise(groovy.lang.Closure[]) |
<T> |
static java.util.List<T> |
waitAll(Promise<T>... promises) @see PromiseFactory#waitAll(grails.async.Promise[]) |
<T> |
static java.util.List<T> |
waitAll(java.util.List<Promise<T>> promises) @see PromiseFactory#waitAll(java.util.List) |
<T> |
static java.util.List<T> |
waitAll(java.util.List<Promise<T>> promises, long timeout, java.util.concurrent.TimeUnit units) @see PromiseFactory#waitAll(java.util.List) |
Methods inherited from class | Name |
---|---|
class java.lang.Object |
java.lang.Object#wait(long, int), java.lang.Object#wait(long), java.lang.Object#wait(), java.lang.Object#equals(java.lang.Object), java.lang.Object#toString(), java.lang.Object#hashCode(), java.lang.Object#getClass(), java.lang.Object#notify(), java.lang.Object#notifyAll() |