Package io.vertx.core

Interface CompositeFuture

    • Method Detail

      • onComplete

        CompositeFuture onComplete​(Handler<AsyncResult<CompositeFuture>> handler)
        Description copied from interface: Future
        Add a handler to be notified of the result.

        WARNING: this is a terminal operation. If several handlers are registered, there is no guarantee that they will be invoked in order of registration.

        Specified by:
        onComplete in interface Future<CompositeFuture>
        Parameters:
        handler - the handler that will be called with the result
        Returns:
        a reference to this, so it can be used fluently
      • onSuccess

        default CompositeFuture onSuccess​(Handler<? super CompositeFuture> handler)
        Description copied from interface: Future
        Add a handler to be notified of the succeeded result.

        WARNING: this is a terminal operation. If several handlers are registered, there is no guarantee that they will be invoked in order of registration.

        Specified by:
        onSuccess in interface Future<CompositeFuture>
        Parameters:
        handler - the handler that will be called with the succeeded result
        Returns:
        a reference to this, so it can be used fluently
      • onFailure

        default CompositeFuture onFailure​(Handler<? super Throwable> handler)
        Description copied from interface: Future
        Add a handler to be notified of the failed result.

        WARNING: this is a terminal operation. If several handlers are registered, there is no guarantee that they will be invoked in order of registration.

        Specified by:
        onFailure in interface Future<CompositeFuture>
        Parameters:
        handler - the handler that will be called with the failed result
        Returns:
        a reference to this, so it can be used fluently
      • cause

        Throwable cause​(int index)
        Returns a cause of a wrapped future
        Parameters:
        index - the wrapped future index
      • succeeded

        boolean succeeded​(int index)
        Returns true if a wrapped future is succeeded
        Parameters:
        index - the wrapped future index
      • failed

        boolean failed​(int index)
        Returns true if a wrapped future is failed
        Parameters:
        index - the wrapped future index
      • isComplete

        boolean isComplete​(int index)
        Returns true if a wrapped future is completed
        Parameters:
        index - the wrapped future index
      • resultAt

        <T> T resultAt​(int index)
        Returns the result of a wrapped future
        Parameters:
        index - the wrapped future index
      • size

        int size()
        Returns:
        the number of wrapped future
      • list

        default <T> List<T> list()
        Returns:
        a list of the current completed values. If one future is not yet resolved or is failed, null will be used
      • causes

        default List<Throwable> causes()
        Returns:
        a list of all the eventual failure causes. If no future failed, returns a list of null values.