Class UniAndGroupIterable<T1>

    • Constructor Detail

      • UniAndGroupIterable

        public UniAndGroupIterable​(java.lang.Iterable<? extends Uni<?>> iterable)
      • UniAndGroupIterable

        public UniAndGroupIterable​(Uni<? extends T1> source,
                                   java.lang.Iterable<? extends Uni<?>> iterable)
      • UniAndGroupIterable

        public UniAndGroupIterable​(Uni<? extends T1> source,
                                   java.lang.Iterable<? extends Uni<?>> iterable,
                                   boolean collectFailures)
    • Method Detail

      • combinedWith

        public <O> Uni<O> combinedWith​(java.util.function.Function<java.util.List<?>,​O> function)
      • discardItems

        public Uni<java.lang.Void> discardItems()
        Discards the items emitted by the combined unis, and just emits null when all the unis have completed successfully. In the case of failure, the failure is propagated.
        Returns:
        the Uni Uni<Void> emitting null when all the unis have completed, or propagating the failure.