Package | Description |
---|---|
rx |
Rx Observables
|
rx.functions |
Modifier and Type | Method and Description |
---|---|
static <T1,T2,T3,R> |
Observable.combineLatest(Observable<? extends T1> o1,
Observable<? extends T2> o2,
Observable<? extends T3> o3,
Func3<? super T1,? super T2,? super T3,? extends R> combineFunction)
Combines three source Observables by emitting an item that aggregates the latest values of each of the
source Observables each time an item is received from any of the source Observables, where this
aggregation is defined by a specified function.
|
static <T1,T2,T3,R> |
Observable.zip(Observable<? extends T1> o1,
Observable<? extends T2> o2,
Observable<? extends T3> o3,
Func3<? super T1,? super T2,? super T3,? extends R> zipFunction)
Returns an Observable that emits the results of a specified combiner function applied to combinations of
three items emitted, in sequence, by three other Observables.
|
static <T1,T2,T3,R> |
Single.zip(Single<? extends T1> o1,
Single<? extends T2> o2,
Single<? extends T3> o3,
Func3<? super T1,? super T2,? super T3,? extends R> zipFunction)
Returns a Single that emits the results of a specified combiner function applied to three items emitted
by three other Singles.
|
Modifier and Type | Method and Description |
---|---|
static <T1,T2,T3> Func3<T1,T2,T3,Void> |
Actions.toFunc(Action3<T1,T2,T3> action)
Converts an
Action3 to a function that calls the action and returns null . |
static <T1,T2,T3,R> |
Actions.toFunc(Action3<T1,T2,T3> action,
R result)
Converts an
Action3 to a function that calls the action and returns a specified value. |
Modifier and Type | Method and Description |
---|---|
static <T0,T1,T2,R> |
Functions.fromFunc(Func3<? super T0,? super T1,? super T2,? extends R> f)
|
Copyright © 2015. All Rights Reserved.