Class MultiCombineLatestOp<I,​O>

  • Type Parameters:
    I - the type of item coming from upstreams
    O - the result type
    All Implemented Interfaces:
    Multi<O>, org.reactivestreams.Publisher<O>

    public class MultiCombineLatestOp<I,​O>
    extends MultiOperator<I,​O>
    Combines the latest values from multiple sources through a function.
    • Constructor Detail

      • MultiCombineLatestOp

        public MultiCombineLatestOp​(java.lang.Iterable<? extends org.reactivestreams.Publisher<? extends I>> upstreams,
                                    java.util.function.Function<java.util.List<?>,​? extends O> combinator,
                                    int bufferSize,
                                    boolean delayErrors)