Uses of Interface
rx.functions.Action3
Packages that use Action3
Package
Description
Functional interfaces of functions and actions of arity 0 to 9 and related
utility classes.
Classes extending the Observable base reactive class, synchronous and
asynchronous event generators.
-
Uses of Action3 in rx.functions
Classes in rx.functions that implement Action3Modifier and TypeClassDescription(package private) static final class
Actions.EmptyAction<T0,
T1, T2, T3, T4, T5, T6, T7, T8> Methods in rx.functions with parameters of type Action3Modifier and TypeMethodDescriptionFunctions.fromAction
(Action3<? super T0, ? super T1, ? super T2> f) Converts anAction3
to a function that calls the action and returnsnull
.static <T1,
T2, T3, R>
Func3<T1, T2, T3, R> 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 Action3Modifier and TypeMethodDescriptionstatic <S,
T> AsyncOnSubscribe <S, T> AsyncOnSubscribe.createSingleState
(Func0<? extends S> generator, Action3<? super S, 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, 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.