RxJava

C D I O R S W 

C

call(Subscriber<? super R>) - Method in class rx.operators.OperatorIfThen
 
call(Subscriber<? super R>) - Method in class rx.operators.OperatorSwitchCase
 
call(Subscriber<? super T>) - Method in class rx.operators.OperatorWhileDoWhile
 

D

doWhile(Observable<? extends T>, Func0<Boolean>) - Static method in class rx.Statement
Return an Observable that replays the emissions from the source Observable, and then continues to replay them so long as a condtion is true.

I

ifThen(Func0<Boolean>, Observable<? extends R>) - Static method in class rx.Statement
Return an Observable that emits the emissions from a specified Observable if a condition evaluates to true, otherwise return an empty Observable.
ifThen(Func0<Boolean>, Observable<? extends R>, Scheduler) - Static method in class rx.Statement
Return an Observable that emits the emissions from a specified Observable if a condition evaluates to true, otherwise return an empty Observable that runs on a specified Scheduler.
ifThen(Func0<Boolean>, Observable<? extends R>, Observable<? extends R>) - Static method in class rx.Statement
Return an Observable that emits the emissions from one specified Observable if a condition evaluates to true, or from another specified Observable otherwise.

O

OperatorIfThen<R> - Class in rx.operators
Given a condition, subscribe to one of the observables when an Observer subscribes.
OperatorIfThen(Func0<Boolean>, Observable<? extends R>, Observable<? extends R>) - Constructor for class rx.operators.OperatorIfThen
 
OperatorSwitchCase<K,R> - Class in rx.operators
Select an observable from a map based on a case key returned by a selector function when an observer subscribes.
OperatorSwitchCase(Func0<? extends K>, Map<? super K, ? extends Observable<? extends R>>, Observable<? extends R>) - Constructor for class rx.operators.OperatorSwitchCase
 
OperatorWhileDoWhile<T> - Class in rx.operators
Repeatedly subscribes to the source observable if the pre- or postcondition is true.
OperatorWhileDoWhile(Observable<? extends T>, Func0<Boolean>, Func0<Boolean>) - Constructor for class rx.operators.OperatorWhileDoWhile
 

R

rx - package rx
 
rx.operators - package rx.operators
 

S

Statement - Class in rx
Imperative statements expressed as Observable operators.
switchCase(Func0<? extends K>, Map<? super K, ? extends Observable<? extends R>>) - Static method in class rx.Statement
Return a particular one of several possible Observables based on a case selector.
switchCase(Func0<? extends K>, Map<? super K, ? extends Observable<? extends R>>, Scheduler) - Static method in class rx.Statement
Return a particular one of several possible Observables based on a case selector and run it on the designated scheduler.
switchCase(Func0<? extends K>, Map<? super K, ? extends Observable<? extends R>>, Observable<? extends R>) - Static method in class rx.Statement
Return a particular one of several possible Observables based on a case selector, or a default Observable if the case selector does not map to a particular one.

W

whileDo(Observable<? extends T>, Func0<Boolean>) - Static method in class rx.Statement
Return an Observable that replays the emissions from the source Observable so long as a condtion is true.
C D I O R S W