Class MultiFailOnItemTimeout.MultiFailOnItemTimeoutProcessor

    • Constructor Detail

      • MultiFailOnItemTimeoutProcessor

        public MultiFailOnItemTimeoutProcessor​(MultiSubscriber<? super I> downstream)
    • Method Detail

      • onSubscribe

        public void onSubscribe​(org.reactivestreams.Subscription subscription)
        Specified by:
        onSubscribe in interface org.reactivestreams.Subscriber<I>
        Overrides:
        onSubscribe in class MultiOperatorProcessor<I,​I>
      • onItem

        public void onItem​(I item)
        Description copied from interface: MultiSubscriber
        Method called when the upstream emits an item event, in response to to requests to Subscription.request(long).
        Specified by:
        onItem in interface MultiSubscriber<I>
        Overrides:
        onItem in class MultiOperatorProcessor<I,​I>
        Parameters:
        item - the item, must not be null.
      • onFailure

        public void onFailure​(java.lang.Throwable failure)
        Description copied from interface: MultiSubscriber
        Method called when the upstream emits a failure terminal event.

        No further events will be sent even if Subscription.request(long) is invoked again.

        Specified by:
        onFailure in interface MultiSubscriber<I>
        Overrides:
        onFailure in class MultiOperatorProcessor<I,​I>
        Parameters:
        failure - the failure, must not be null.
      • cancel

        public void cancel()
        Specified by:
        cancel in interface org.reactivestreams.Subscription
        Overrides:
        cancel in class MultiOperatorProcessor<I,​I>