Example usage for Java io.vertx.core CompositeFuture fields, constructors, methods, implement or subclass
The text is from its open source code.
CompositeFuture | all(List Like #all(Future,Future) but with a list of futures. When the list is empty, the returned future will be already completed. |
CompositeFuture | all(Future Like #all(Future,Future) but with 5 futures. |
CompositeFuture | all(Future Return a composite future, succeeded when all futures are succeeded, failed when any future is failed. |
CompositeFuture | all(Future Like #all(Future,Future) but with 3 futures. |
CompositeFuture | all(Future Like #all(Future,Future) but with 4 futures. |
CompositeFuture | any(Future Return a composite future, succeeded when any futures is succeeded, failed when all futures are failed. |
CompositeFuture | any(List Like #any(Future,Future) but with a list of futures. When the list is empty, the returned future will be already completed. |
Throwable | cause(int index) Returns a cause of a wrapped future |
CompositeFuture | join(Future Like #join(Future,Future) but with 3 futures. |
CompositeFuture | join(List Like #join(Future,Future) but with a list of futures. When the list is empty, the returned future will be already completed. |
CompositeFuture | join(Future Return a composite future, succeeded when all futures are succeeded, failed when any future is failed. |
List | list() |
T | resultAt(int index) Returns the result of a wrapped future |
CompositeFuture | setHandler(Handler |
int | size() |
boolean | succeeded(int index) Returns true if a wrapped future is succeeded |