Class OperatorMaterialize.ParentSubscriber<T>

    • Field Detail

      • terminalNotification

        private volatile Notification<T> terminalNotification
      • busy

        private boolean busy
      • missed

        private boolean missed
      • requested

        private final java.util.concurrent.atomic.AtomicLong requested
    • Method Detail

      • onStart

        public void onStart()
        Description copied from class: Subscriber
        This method is invoked when the Subscriber and Observable have been connected but the Observable has not yet begun to emit items or send notifications to the Subscriber. Override this method to add any useful initialization to your subscription, for instance to initiate backpressure.
        Overrides:
        onStart in class Subscriber<T>
      • requestMore

        void requestMore​(long n)
      • onError

        public void onError​(java.lang.Throwable e)
        Description copied from interface: Observer
        Notifies the Observer that the Observable has experienced an error condition.

        If the Observable calls this method, it will not thereafter call Observer.onNext(T) or Observer.onCompleted().

        Parameters:
        e - the exception encountered by the Observable
      • decrementRequested

        private void decrementRequested()
      • drain

        private void drain()