Uses of Interface
rx.functions.Action3
-
Packages that use Action3 Package Description rx.functions Functional interfaces of functions and actions of arity 0 to 9 and related utility classes.rx.observables Classes extending the Observable base reactive class, synchronous and asynchronous event generators. -
-
Uses of Action3 in rx.functions
Classes in rx.functions that implement Action3 Modifier and Type Class Description (package private) static class
Actions.EmptyAction<T0,T1,T2,T3,T4,T5,T6,T7,T8>
Methods in rx.functions with parameters of type Action3 Modifier and Type Method Description static <T0,T1,T2>
FuncN<java.lang.Void>Functions. fromAction(Action3<? super T0,? super T1,? super T2> f)
static <T1,T2,T3>
Func3<T1,T2,T3,java.lang.Void>Actions. toFunc(Action3<T1,T2,T3> action)
Converts anAction3
to a function that calls the action and returnsnull
.static <T1,T2,T3,R>
Func3<T1,T2,T3,R>Actions. toFunc(Action3<T1,T2,T3> action, R result)
Converts anAction3
to a function that calls the action and returns a specified value. -
Uses of Action3 in rx.observables
Methods in rx.observables with parameters of type Action3 Modifier and Type Method Description static <S,T>
AsyncOnSubscribe<S,T>AsyncOnSubscribe. createSingleState(Func0<? extends S> generator, Action3<? super S,java.lang.Long,? super Observer<Observable<? extends T>>> next)
Generates a synchronousAsyncOnSubscribe
that calls the providednext
function to generate data to downstream subscribers.static <S,T>
AsyncOnSubscribe<S,T>AsyncOnSubscribe. createSingleState(Func0<? extends S> generator, Action3<? super S,java.lang.Long,? super Observer<Observable<? extends T>>> next, Action1<? super S> onUnsubscribe)
Generates a synchronousAsyncOnSubscribe
that calls the providednext
function to generate data to downstream subscribers.
-