Uses of Interface
rx.functions.Action8
-
Packages that use Action8 Package Description rx.functions Functional interfaces of functions and actions of arity 0 to 9 and related utility classes. -
-
Uses of Action8 in rx.functions
Classes in rx.functions that implement Action8 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 Action8 Modifier and Type Method Description static <T1,T2,T3,T4,T5,T6,T7,T8>
Func8<T1,T2,T3,T4,T5,T6,T7,T8,java.lang.Void>Actions. toFunc(Action8<T1,T2,T3,T4,T5,T6,T7,T8> action)
Converts anAction8
to a function that calls the action and returnsnull
.static <T1,T2,T3,T4,T5,T6,T7,T8,R>
Func8<T1,T2,T3,T4,T5,T6,T7,T8,R>Actions. toFunc(Action8<T1,T2,T3,T4,T5,T6,T7,T8> action, R result)
Converts anAction8
to a function that calls the action and returns a specified value.
-