Inherited Attributes |
Attributes inherited from: Object hash , string |
Methods | |
failedFuture | shared Future<T?> failedFuture<T>(String failureMessage) Create a failed future with the specified failure message. Parameters:
|
failedFuture | shared Future<T?> failedFuture<T>(Throwable t) Create a failed future with the specified failure cause. Parameters:
|
future | shared Future<T?> future<T>() Create a future that hasn't completed yet |
future | shared Future<T?> future<T>(Anything(Future<T?>) handler) Create a future that hasn't completed yet and that is passed to the Parameters:
|
succeededFuture | shared Future<T?> succeededFuture<T>() Create a succeeded future with a null result |
succeededFuture | shared Future<T?> succeededFuture<T>(T? result) Created a succeeded future with the specified result. Parameters:
|
Inherited Methods |
Methods inherited from: Object equals |