Class FlowableDelaySubscriptionOther<T,U>

java.lang.Object
io.reactivex.rxjava3.core.Flowable<T>
io.reactivex.rxjava3.internal.operators.flowable.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 Details

    • main

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

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

    • FlowableDelaySubscriptionOther

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

    • 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