Class MultiScanOp<T>

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

    public final class MultiScanOp<T>
    extends AbstractMultiOperator<T,​T>
    Scan operator accumulating items of the same type as the upstream.
    • Constructor Detail

      • MultiScanOp

        public MultiScanOp​(Multi<? extends T> upstream,
                           java.util.function.BiFunction<T,​? super T,​T> accumulator)