Class MaybeFlatMapPublisher.FlatMapPublisherSubscriber<T,​R>

  • All Implemented Interfaces:
    FlowableSubscriber<R>, MaybeObserver<T>, java.io.Serializable, org.reactivestreams.Subscriber<R>, org.reactivestreams.Subscription
    Enclosing class:
    MaybeFlatMapPublisher<T,​R>

    static final class MaybeFlatMapPublisher.FlatMapPublisherSubscriber<T,​R>
    extends java.util.concurrent.atomic.AtomicReference<org.reactivestreams.Subscription>
    implements FlowableSubscriber<R>, MaybeObserver<T>, org.reactivestreams.Subscription
    • Field Summary

      Fields 
      Modifier and Type Field Description
      (package private) org.reactivestreams.Subscriber<? super R> downstream  
      (package private) Function<? super T,​? extends org.reactivestreams.Publisher<? extends R>> mapper  
      (package private) java.util.concurrent.atomic.AtomicLong requested  
      private static long serialVersionUID  
      (package private) Disposable upstream  
    • Constructor Summary

      Constructors 
      Constructor Description
      FlatMapPublisherSubscriber​(org.reactivestreams.Subscriber<? super R> downstream, Function<? super T,​? extends org.reactivestreams.Publisher<? extends R>> mapper)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void cancel()  
      void onComplete()
      Called once the deferred computation completes normally.
      void onError​(java.lang.Throwable t)
      Notifies the MaybeObserver that the Maybe has experienced an error condition.
      void onNext​(R t)  
      void onSubscribe​(Disposable d)
      Provides the MaybeObserver with the means of cancelling (disposing) the connection (channel) with the Maybe in both synchronous (from within onSubscribe(Disposable) itself) and asynchronous manner.
      void onSubscribe​(org.reactivestreams.Subscription s)
      Implementors of this method should make sure everything that needs to be visible in Subscriber.onNext(Object) is established before calling Subscription.request(long).
      void onSuccess​(T t)
      Notifies the MaybeObserver with one item and that the Maybe has finished sending push-based notifications.
      void request​(long n)  
      • Methods inherited from class java.util.concurrent.atomic.AtomicReference

        accumulateAndGet, compareAndExchange, compareAndExchangeAcquire, compareAndExchangeRelease, compareAndSet, get, getAcquire, getAndAccumulate, getAndSet, getAndUpdate, getOpaque, getPlain, lazySet, set, setOpaque, setPlain, setRelease, toString, updateAndGet, weakCompareAndSet, weakCompareAndSetAcquire, weakCompareAndSetPlain, weakCompareAndSetRelease, weakCompareAndSetVolatile
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Field Detail

      • downstream

        final org.reactivestreams.Subscriber<? super R> downstream
      • mapper

        final Function<? super T,​? extends org.reactivestreams.Publisher<? extends R>> mapper
      • requested

        final java.util.concurrent.atomic.AtomicLong requested
    • Constructor Detail

      • FlatMapPublisherSubscriber

        FlatMapPublisherSubscriber​(org.reactivestreams.Subscriber<? super R> downstream,
                                   Function<? super T,​? extends org.reactivestreams.Publisher<? extends R>> mapper)
    • Method Detail

      • onNext

        public void onNext​(R t)
        Specified by:
        onNext in interface org.reactivestreams.Subscriber<T>
      • onError

        public void onError​(java.lang.Throwable t)
        Description copied from interface: MaybeObserver
        Notifies the MaybeObserver that the Maybe has experienced an error condition.

        If the Maybe calls this method, it will not thereafter call MaybeObserver.onSuccess(T).

        Specified by:
        onError in interface MaybeObserver<T>
        Specified by:
        onError in interface org.reactivestreams.Subscriber<T>
        Parameters:
        t - the exception encountered by the Maybe
      • onComplete

        public void onComplete()
        Description copied from interface: MaybeObserver
        Called once the deferred computation completes normally.
        Specified by:
        onComplete in interface MaybeObserver<T>
        Specified by:
        onComplete in interface org.reactivestreams.Subscriber<T>
      • request

        public void request​(long n)
        Specified by:
        request in interface org.reactivestreams.Subscription
      • cancel

        public void cancel()
        Specified by:
        cancel in interface org.reactivestreams.Subscription
      • onSubscribe

        public void onSubscribe​(org.reactivestreams.Subscription s)
        Description copied from interface: FlowableSubscriber
        Implementors of this method should make sure everything that needs to be visible in Subscriber.onNext(Object) is established before calling Subscription.request(long). In practice this means no initialization should happen after the request() call and additional behavior is thread safe in respect to onNext.
        Specified by:
        onSubscribe in interface FlowableSubscriber<T>
        Specified by:
        onSubscribe in interface org.reactivestreams.Subscriber<T>