Package | Description |
---|---|
rx |
Base reactive classes: Observable, Single and Completable; base reactive consumers;
other common base interfaces.
|
rx.plugins |
Callback types and a central plugin handler class to hook into the lifecycle
of the base reactive types and schedulers.
|
Modifier and Type | Method and Description |
---|---|
<R> Single<R> |
Single.lift(Observable.Operator<? extends R,? super T> lift)
Lifts a function to the current Single and returns a new Single that when subscribed to will pass the
values of the current Single through the Operator function.
|
<R> Observable<R> |
Observable.lift(Observable.Operator<? extends R,? super T> operator)
This method requires advanced knowledge about building operators; please consider
other standard composition methods first;
Lifts a function to the current Observable and returns a new Observable that when subscribed to will pass
the values of the current Observable through the Operator function.
|
Modifier and Type | Method and Description |
---|---|
<T,R> Observable.Operator<? extends R,? super T> |
RxJavaObservableExecutionHook.onLift(Observable.Operator<? extends R,? super T> lift)
Deprecated.
|
<T,R> Observable.Operator<? extends R,? super T> |
RxJavaSingleExecutionHook.onLift(Observable.Operator<? extends R,? super T> lift)
Deprecated.
|
static <T,R> Observable.Operator<R,T> |
RxJavaHooks.onObservableLift(Observable.Operator<R,T> operator)
Hook to call before the child subscriber would subscribe to an Operator.
|
static <T,R> Observable.Operator<R,T> |
RxJavaHooks.onSingleLift(Observable.Operator<R,T> operator)
Hook to call before the child subscriber would subscribe to an Operator.
|
Modifier and Type | Method and Description |
---|---|
static Func1<Observable.Operator,Observable.Operator> |
RxJavaHooks.getOnObservableLift()
Returns the current Observable onLift hook function or null if it is
set to the default pass-through.
|
static Func1<Observable.Operator,Observable.Operator> |
RxJavaHooks.getOnObservableLift()
Returns the current Observable onLift hook function or null if it is
set to the default pass-through.
|
static Func1<Observable.Operator,Observable.Operator> |
RxJavaHooks.getOnSingleLift()
Returns the current Single onLift hook function or null if it is
set to the default pass-through.
|
static Func1<Observable.Operator,Observable.Operator> |
RxJavaHooks.getOnSingleLift()
Returns the current Single onLift hook function or null if it is
set to the default pass-through.
|
Modifier and Type | Method and Description |
---|---|
<T,R> Observable.Operator<? extends R,? super T> |
RxJavaObservableExecutionHook.onLift(Observable.Operator<? extends R,? super T> lift)
Deprecated.
|
<T,R> Observable.Operator<? extends R,? super T> |
RxJavaSingleExecutionHook.onLift(Observable.Operator<? extends R,? super T> lift)
Deprecated.
|
static <T,R> Observable.Operator<R,T> |
RxJavaHooks.onObservableLift(Observable.Operator<R,T> operator)
Hook to call before the child subscriber would subscribe to an Operator.
|
static <T,R> Observable.Operator<R,T> |
RxJavaHooks.onSingleLift(Observable.Operator<R,T> operator)
Hook to call before the child subscriber would subscribe to an Operator.
|
Modifier and Type | Method and Description |
---|---|
static void |
RxJavaHooks.setOnObservableLift(Func1<Observable.Operator,Observable.Operator> onObservableLift)
Sets a hook function that is called with an operator when an Observable operator built with
lift() gets subscribed to.
|
static void |
RxJavaHooks.setOnObservableLift(Func1<Observable.Operator,Observable.Operator> onObservableLift)
Sets a hook function that is called with an operator when an Observable operator built with
lift() gets subscribed to.
|
static void |
RxJavaHooks.setOnSingleLift(Func1<Observable.Operator,Observable.Operator> onSingleLift)
Sets a hook function that is called with an operator when an Single operator built with
lift() gets subscribed to.
|
static void |
RxJavaHooks.setOnSingleLift(Func1<Observable.Operator,Observable.Operator> onSingleLift)
Sets a hook function that is called with an operator when an Single operator built with
lift() gets subscribed to.
|
Copyright © 2021. All rights reserved.