Uses of Interface
rx.functions.Func9

Packages that use Func9
Package
Description
Base reactive classes: Observable, Single and Completable; base reactive consumers; other common base interfaces.
Functional interfaces of functions and actions of arity 0 to 9 and related utility classes.
Operators that allow composing Observables to transform and manipulate data in an asynchronous, functional and thread-safe manner.
  • Uses of Func9 in rx

    Methods in rx with parameters of type Func9
    Modifier and Type
    Method
    Description
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, R>
    Observable<R>
    Observable.combineLatest(Observable<? extends T1> o1, Observable<? extends T2> o2, Observable<? extends T3> o3, Observable<? extends T4> o4, Observable<? extends T5> o5, Observable<? extends T6> o6, Observable<? extends T7> o7, Observable<? extends T8> o8, Observable<? extends T9> o9, Func9<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? super T9,? extends R> combineFunction)
    Combines nine 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.
    final <T1, T2, T3, T4, T5, T6, T7, T8, R>
    Observable<R>
    Observable.withLatestFrom(Observable<T1> o1, Observable<T2> o2, Observable<T1> o3, Observable<T2> o4, Observable<T1> o5, Observable<T2> o6, Observable<T1> o7, Observable<T2> o8, Func9<? super T,? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,R> combiner)
    Combines the value emission from this Observable with the latest emissions from the other Observables via a function to produce the output item.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, R>
    Observable<R>
    Observable.zip(Observable<? extends T1> o1, Observable<? extends T2> o2, Observable<? extends T3> o3, Observable<? extends T4> o4, Observable<? extends T5> o5, Observable<? extends T6> o6, Observable<? extends T7> o7, Observable<? extends T8> o8, Observable<? extends T9> o9, Func9<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? super T9,? extends R> zipFunction)
    Returns an Observable that emits the results of a specified combiner function applied to combinations of nine items emitted, in sequence, by nine other Observables.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, R>
    Single<R>
    Single.zip(Single<? extends T1> s1, Single<? extends T2> s2, Single<? extends T3> s3, Single<? extends T4> s4, Single<? extends T5> s5, Single<? extends T6> s6, Single<? extends T7> s7, Single<? extends T8> s8, Single<? extends T9> s9, Func9<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? super T9,? extends R> zipFunction)
    Returns an Observable that emits the results of a specified combiner function applied to nine items emitted by nine other Singles.
  • Uses of Func9 in rx.functions

    Methods in rx.functions that return Func9
    Modifier and Type
    Method
    Description
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9>
    Func9<T1,T2,T3,T4,T5,T6,T7,T8,T9,Void>
    Actions.toFunc(Action9<T1,T2,T3,T4,T5,T6,T7,T8,T9> action)
    Converts an Action9 to a function that calls the action and returns null.
    static <T1, T2, T3, T4, T5, T6, T7, T8, T9, R>
    Func9<T1,T2,T3,T4,T5,T6,T7,T8,T9,R>
    Actions.toFunc(Action9<T1,T2,T3,T4,T5,T6,T7,T8,T9> action, R result)
    Converts an Action9 to a function that calls the action and returns a specified value.
    Methods in rx.functions with parameters of type Func9
    Modifier and Type
    Method
    Description
    static <T0, T1, T2, T3, T4, T5, T6, T7, T8, R>
    FuncN<R>
    Functions.fromFunc(Func9<? super T0,? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? extends R> f)
    Converts a Func9 to a FuncN to allow heterogeneous handling of functions with different arities.
  • Uses of Func9 in rx.internal.operators

    Constructors in rx.internal.operators with parameters of type Func9
    Modifier
    Constructor
    Description