public interface Completion<T>
Modifier and Type | Method and Description |
---|---|
void |
await()
Cause the current thread to wait until this completion completes.
If the current thread is interrupted, an exception will be thrown. |
void |
await(long timeoutMillis)
Cause the current thread to wait until this completion completes with a configurable timeout.
If completion times out or the current thread is interrupted, an exception will be thrown. |
void |
awaitSuccess()
Cause the current thread to wait until this completion completes and succeeds.
If the current thread is interrupted or the suite fails, an exception will be thrown. |
void |
awaitSuccess(long timeoutMillis)
Cause the current thread to wait until this completion completes and succeeds with a configurable timeout.
If completion times out or the current thread is interrupted or the suite fails, an exception will be thrown. |
void |
handler(Handler<AsyncResult<T>> completionHandler)
Completion handler to receive a completion signal when this completions completes.
|
boolean |
isCompleted() |
boolean |
isFailed() |
boolean |
isSucceeded() |
void |
resolve(Future<T> future)
Deprecated.
use
resolve(Promise) instead |
void |
resolve(Promise<T> future)
Completes the future upon completion, otherwise fails it.
|
void resolve(Promise<T> future)
future
- the future to resolve@Deprecated void resolve(Future<T> future)
resolve(Promise)
insteadfuture
- the future to resolveboolean isCompleted()
boolean isSucceeded()
boolean isFailed()
void handler(Handler<AsyncResult<T>> completionHandler)
completionHandler
- the completion handlervoid await()
If the current thread is interrupted, an exception will be thrown.
void await(long timeoutMillis)
If completion times out or the current thread is interrupted, an exception will be thrown.
timeoutMillis
- the timeout in millisecondsvoid awaitSuccess()
If the current thread is interrupted or the suite fails, an exception will be thrown.
void awaitSuccess(long timeoutMillis)
If completion times out or the current thread is interrupted or the suite fails, an exception will be thrown.
timeoutMillis
- the timeout in millisecondsCopyright © 2020 Eclipse. All rights reserved.