Uses of Interface
rx.functions.Action6

Packages that use Action6
Package
Description
Functional interfaces of functions and actions of arity 0 to 9 and related utility classes.
  • Uses of Action6 in rx.functions

    Classes in rx.functions that implement Action6
    Modifier and Type
    Class
    Description
    (package private) static final class 
    Actions.EmptyAction<T0,T1,T2,T3,T4,T5,T6,T7,T8>
     
    Methods in rx.functions with parameters of type Action6
    Modifier and Type
    Method
    Description
    static <T1, T2, T3, T4, T5, T6>
    Func6<T1,T2,T3,T4,T5,T6,Void>
    Actions.toFunc(Action6<T1,T2,T3,T4,T5,T6> action)
    Converts an Action6 to a function that calls the action and returns null.
    static <T1, T2, T3, T4, T5, T6, R>
    Func6<T1,T2,T3,T4,T5,T6,R>
    Actions.toFunc(Action6<T1,T2,T3,T4,T5,T6> action, R result)
    Converts an Action6 to a function that calls the action and returns a specified value.