Class MultiSelectLastOp<T>

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

    public class MultiSelectLastOp<T>
    extends AbstractMultiOperator<T,​T>
    Implementation of multi, caching and emitting the last n items from upstream (emitted before the upstream completion).
    • Constructor Detail

      • MultiSelectLastOp

        public MultiSelectLastOp​(Multi<? extends T> upstream,
                                 int numberOfItems)