Interface UniJoin.JoinAllStrategyTerminal<T>

    • Method Detail

      • andCollectFailures

        @CheckReturnValue
        Uni<java.util.List<T>> andCollectFailures()
        Wait for all Uni references to terminate, and collect all failures in a CompositeException.
        Returns:
        a new Uni
      • andFailFast

        @CheckReturnValue
        Uni<java.util.List<T>> andFailFast()
        Immediately forward the first failure from any of the Uni, and cancel the remaining Uni subscriptions, ignoring eventual subsequent failures.
        Returns:
        a new Uni