List of usage examples for io.vertx.core CompositeFuture any
static CompositeFuture any(List<Future> futures)
When the list is empty, the returned future will be already completed.
From source file:examples.CoreExamples.java
License:Open Source License
public void exampleFutureAny2(Future f1, Future f2, Future f3) { CompositeFuture.any(Arrays.asList(f1, f2, f3)); }