Uses of Interface
rx.Completable.CompletableOnSubscribe
-
Packages that use Completable.CompletableOnSubscribe Package Description rx Base reactive classes: Observable, Single and Completable; base reactive consumers; other common base interfaces.rx.internal.operators Operators that allow composing Observables to transform and manipulate data in an asynchronous, functional and thread-safe manner.rx.plugins Callback types and a central plugin handler class to hook into the lifecycle of the base reactive types and schedulers. -
-
Uses of Completable.CompletableOnSubscribe in rx
Fields in rx declared as Completable.CompletableOnSubscribe Modifier and Type Field Description private Completable.CompletableOnSubscribeCompletable. onSubscribeThe actual subscription action.Methods in rx with parameters of type Completable.CompletableOnSubscribe Modifier and Type Method Description static CompletableCompletable. create(Completable.CompletableOnSubscribe onSubscribe)Constructs a Completable instance by wrapping the given onSubscribe callback.Constructors in rx with parameters of type Completable.CompletableOnSubscribe Constructor Description Completable(Completable.CompletableOnSubscribe onSubscribe)Constructs a Completable instance with the given onSubscribe callback.Completable(Completable.CompletableOnSubscribe onSubscribe, boolean useHook)Constructs a Completable instance with the given onSubscribe callback without calling the onCreate hook. -
Uses of Completable.CompletableOnSubscribe in rx.internal.operators
Classes in rx.internal.operators that implement Completable.CompletableOnSubscribe Modifier and Type Class Description classCompletableOnSubscribeConcatclassCompletableOnSubscribeConcatArrayclassCompletableOnSubscribeConcatIterableclassCompletableOnSubscribeMergeclassCompletableOnSubscribeMergeArrayclassCompletableOnSubscribeMergeDelayErrorArrayclassCompletableOnSubscribeMergeDelayErrorIterableclassCompletableOnSubscribeMergeIterableclassCompletableOnSubscribeTimeoutclassOnSubscribeOnAssemblyCompletable<T>Captures the current stack when it is instantiated, makes it available through a field and attaches it to all passing exception.Fields in rx.internal.operators declared as Completable.CompletableOnSubscribe Modifier and Type Field Description (package private) Completable.CompletableOnSubscribeOnSubscribeOnAssemblyCompletable. sourceConstructors in rx.internal.operators with parameters of type Completable.CompletableOnSubscribe Constructor Description OnSubscribeOnAssemblyCompletable(Completable.CompletableOnSubscribe source) -
Uses of Completable.CompletableOnSubscribe in rx.plugins
Fields in rx.plugins with type parameters of type Completable.CompletableOnSubscribe Modifier and Type Field Description (package private) static Func1<Completable.CompletableOnSubscribe,Completable.CompletableOnSubscribe>RxJavaHooks. onCompletableCreate(package private) static Func1<Completable.CompletableOnSubscribe,Completable.CompletableOnSubscribe>RxJavaHooks. onCompletableCreate(package private) static Func2<Completable,Completable.CompletableOnSubscribe,Completable.CompletableOnSubscribe>RxJavaHooks. onCompletableStart(package private) static Func2<Completable,Completable.CompletableOnSubscribe,Completable.CompletableOnSubscribe>RxJavaHooks. onCompletableStartMethods in rx.plugins that return Completable.CompletableOnSubscribe Modifier and Type Method Description static <T> Completable.CompletableOnSubscribeRxJavaHooks. onCompletableStart(Completable instance, Completable.CompletableOnSubscribe onSubscribe)Hook to call before the child subscriber is subscribed to the OnSubscribe action.Completable.CompletableOnSubscribeRxJavaCompletableExecutionHook. onCreate(Completable.CompletableOnSubscribe f)Deprecated.static Completable.CompletableOnSubscribeRxJavaHooks. onCreate(Completable.CompletableOnSubscribe onSubscribe)Hook to call when a Completable is created.Completable.CompletableOnSubscribeRxJavaCompletableExecutionHook. onSubscribeStart(Completable completableInstance, Completable.CompletableOnSubscribe onSubscribe)Deprecated.Methods in rx.plugins that return types with arguments of type Completable.CompletableOnSubscribe Modifier and Type Method Description static Func1<Completable.CompletableOnSubscribe,Completable.CompletableOnSubscribe>RxJavaHooks. getOnCompletableCreate()Returns the current Completable onCreate hook function or null if it is set to the default pass-through.static Func1<Completable.CompletableOnSubscribe,Completable.CompletableOnSubscribe>RxJavaHooks. getOnCompletableCreate()Returns the current Completable onCreate hook function or null if it is set to the default pass-through.static Func2<Completable,Completable.CompletableOnSubscribe,Completable.CompletableOnSubscribe>RxJavaHooks. getOnCompletableStart()Returns the current Completable onStart hook function or null if it is set to the default pass-through.static Func2<Completable,Completable.CompletableOnSubscribe,Completable.CompletableOnSubscribe>RxJavaHooks. getOnCompletableStart()Returns the current Completable onStart hook function or null if it is set to the default pass-through.Methods in rx.plugins with parameters of type Completable.CompletableOnSubscribe Modifier and Type Method Description static <T> Completable.CompletableOnSubscribeRxJavaHooks. onCompletableStart(Completable instance, Completable.CompletableOnSubscribe onSubscribe)Hook to call before the child subscriber is subscribed to the OnSubscribe action.Completable.CompletableOnSubscribeRxJavaCompletableExecutionHook. onCreate(Completable.CompletableOnSubscribe f)Deprecated.static Completable.CompletableOnSubscribeRxJavaHooks. onCreate(Completable.CompletableOnSubscribe onSubscribe)Hook to call when a Completable is created.Completable.CompletableOnSubscribeRxJavaCompletableExecutionHook. onSubscribeStart(Completable completableInstance, Completable.CompletableOnSubscribe onSubscribe)Deprecated.Method parameters in rx.plugins with type arguments of type Completable.CompletableOnSubscribe Modifier and Type Method Description static voidRxJavaHooks. setOnCompletableCreate(Func1<Completable.CompletableOnSubscribe,Completable.CompletableOnSubscribe> onCompletableCreate)Sets the Completable's onCreate hook function unless a lockdown is in effect.static voidRxJavaHooks. setOnCompletableCreate(Func1<Completable.CompletableOnSubscribe,Completable.CompletableOnSubscribe> onCompletableCreate)Sets the Completable's onCreate hook function unless a lockdown is in effect.static voidRxJavaHooks. setOnCompletableStart(Func2<Completable,Completable.CompletableOnSubscribe,Completable.CompletableOnSubscribe> onCompletableStart)Sets the hook function that is called when a subscriber subscribes to a Completable unless a lockdown is in effect.static voidRxJavaHooks. setOnCompletableStart(Func2<Completable,Completable.CompletableOnSubscribe,Completable.CompletableOnSubscribe> onCompletableStart)Sets the hook function that is called when a subscriber subscribes to a Completable unless a lockdown is in effect.
-