Package | Description |
---|---|
rx |
Rx Observables
|
rx.functions | |
rx.observables |
Modifier and Type | Interface and Description |
---|---|
static interface |
Observable.OnSubscribe<T>
Invoked when Observable.subscribe is called.
|
static interface |
Observable.Operator<R,T>
Operator function for lifting into an Observable.
|
static interface |
Observable.Transformer<T,R>
Transformer function used by
Observable.compose(rx.Observable.Transformer<? super T, ? extends R>) . |
static interface |
Single.OnSubscribe<T>
Invoked when Single.execute is called.
|
static interface |
Single.Transformer<T,R>
Transformer function used by
Single.compose(rx.Single.Transformer<? super T, ? extends R>) . |
Modifier and Type | Interface and Description |
---|---|
interface |
Action
All Action interfaces extend from this.
|
interface |
Action0
A zero-argument action.
|
interface |
Action1<T>
A one-argument action.
|
interface |
Action2<T1,T2>
A two-argument action.
|
interface |
Action3<T1,T2,T3>
A three-argument action.
|
interface |
Action4<T1,T2,T3,T4>
A four-argument action.
|
interface |
Action5<T1,T2,T3,T4,T5>
A five-argument action.
|
interface |
Action6<T1,T2,T3,T4,T5,T6>
A six-argument action.
|
interface |
Action7<T1,T2,T3,T4,T5,T6,T7>
A seven-argument action.
|
interface |
Action8<T1,T2,T3,T4,T5,T6,T7,T8>
An eight-argument action.
|
interface |
Action9<T1,T2,T3,T4,T5,T6,T7,T8,T9>
A nine-argument action.
|
interface |
ActionN
A vector-argument action.
|
interface |
Func0<R>
Represents a function with zero arguments.
|
interface |
Func1<T,R>
Represents a function with one argument.
|
interface |
Func2<T1,T2,R>
Represents a function with two arguments.
|
interface |
Func3<T1,T2,T3,R>
Represents a function with three arguments.
|
interface |
Func4<T1,T2,T3,T4,R>
Represents a function with four arguments.
|
interface |
Func5<T1,T2,T3,T4,T5,R>
Represents a function with five arguments.
|
interface |
Func6<T1,T2,T3,T4,T5,T6,R>
Represents a function with six arguments.
|
interface |
Func7<T1,T2,T3,T4,T5,T6,T7,R>
Represents a function with seven arguments.
|
interface |
Func8<T1,T2,T3,T4,T5,T6,T7,T8,R>
Represents a function with eight arguments.
|
interface |
Func9<T1,T2,T3,T4,T5,T6,T7,T8,T9,R>
Represents a function with nine arguments.
|
interface |
FuncN<R>
Represents a vector-argument function.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractOnSubscribe<T,S>
Abstract base class for the
Observable.OnSubscribe interface that helps you build Observable sources one
onNext at a time, and automatically supports unsubscription and backpressure. |
Copyright © 2015. All Rights Reserved.