| Package | Description |
|---|---|
| rx |
Rx Observables
|
| rx.internal.operators |
Operators that allow composing Observables to transform and manipulate data in an asynchronous, functional and thread-safe manner.
|
| Modifier and Type | Method and Description |
|---|---|
static <T> Single |
Single.create(Single
Returns a Single that will execute the specified function when a
SingleSubscriber executes it or a
Subscriber subscribes to it.
|
| Constructor and Description | |
|---|---|
Single(Single
Creates a Single with a Function to execute when it is subscribed to (executed).
|
| Modifier and Type | Class and Description |
|---|---|
class |
OnSubscribeSingle<T>
Allows conversion of an Observable to a Single ensuring that exactly one item is emitted - no more and no less.
|