Class MultiConcatOp<T>

  • Type Parameters:
    T - the type of item
    All Implemented Interfaces:
    Multi<T>, org.reactivestreams.Publisher<T>

    public class MultiConcatOp<T>
    extends AbstractMulti<T>
    Concatenates a fixed set of Publishers. Items from each publisher are emitted in order. All the items from one publisher must be consumed before items from another publisher are emitted.
    • Constructor Detail

      • MultiConcatOp

        @SafeVarargs
        public MultiConcatOp​(boolean postponeFailurePropagation,
                             org.reactivestreams.Publisher<? extends T>... publishers)