Java io.vertx.core CompositeFuture fields, constructors, methods, implement or subclass

Example usage for Java io.vertx.core CompositeFuture fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for io.vertx.core CompositeFuture.

The text is from its open source code.

Method

CompositeFutureall(List futures)
Like #all(Future,Future) but with a list of futures.

When the list is empty, the returned future will be already completed.

CompositeFutureall(Future f1, Future f2, Future f3, Future f4, Future f5)
Like #all(Future,Future) but with 5 futures.
CompositeFutureall(Future f1, Future f2)
Return a composite future, succeeded when all futures are succeeded, failed when any future is failed.
CompositeFutureall(Future f1, Future f2, Future f3)
Like #all(Future,Future) but with 3 futures.
CompositeFutureall(Future f1, Future f2, Future f3, Future f4)
Like #all(Future,Future) but with 4 futures.
CompositeFutureany(Future f1, Future f2)
Return a composite future, succeeded when any futures is succeeded, failed when all futures are failed.
CompositeFutureany(List futures)
Like #any(Future,Future) but with a list of futures.

When the list is empty, the returned future will be already completed.

Throwablecause(int index)
Returns a cause of a wrapped future
CompositeFuturejoin(Future f1, Future f2, Future f3)
Like #join(Future,Future) but with 3 futures.
CompositeFuturejoin(List futures)
Like #join(Future,Future) but with a list of futures.

When the list is empty, the returned future will be already completed.

CompositeFuturejoin(Future f1, Future f2)
Return a composite future, succeeded when all futures are succeeded, failed when any future is failed.
Listlist()
TresultAt(int index)
Returns the result of a wrapped future
CompositeFuturesetHandler(Handler> handler)
intsize()
booleansucceeded(int index)
Returns true if a wrapped future is succeeded