Class FlowableDelaySubscriptionOther<T,​U>

  • Type Parameters:
    T - the main type
    U - the other value type, ignored
    All Implemented Interfaces:
    org.reactivestreams.Publisher<T>

    public final class FlowableDelaySubscriptionOther<T,​U>
    extends Flowable<T>
    Delays the subscription to the main source until the other observable fires an event or completes.
    • Field Detail

      • main

        final org.reactivestreams.Publisher<? extends T> main
      • other

        final org.reactivestreams.Publisher<U> other
    • Constructor Detail

      • FlowableDelaySubscriptionOther

        public FlowableDelaySubscriptionOther​(org.reactivestreams.Publisher<? extends T> main,
                                              org.reactivestreams.Publisher<U> other)
    • Method Detail

      • subscribeActual

        public void subscribeActual​(org.reactivestreams.Subscriber<? super T> child)
        Description copied from class: Flowable
        Operator implementations (both source and intermediate) should implement this method that performs the necessary business logic and handles the incoming Subscribers.

        There is no need to call any of the plugin hooks on the current Flowable instance or the Subscriber; all hooks and basic safeguards have been applied by Flowable.subscribe(Subscriber) before this method gets called.

        Specified by:
        subscribeActual in class Flowable<T>
        Parameters:
        child - the incoming Subscriber, never null