| 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.
|
| rx.observers |
| Modifier and Type | Method and Description |
|---|---|
static <T> Notification |
Notification.createOnCompleted()
Creates and returns a
Notification of variety
Kind.OnCompleted.
|
static <T> Notification |
Notification.createOnCompleted(Class
Creates and returns a
Notification of variety
Kind.OnCompleted.
|
static <T> Notification |
Notification.createOnError(Throwable
Creates and returns a
Notification of variety
Kind.OnError, and assigns it an exception.
|
static <T> Notification |
Notification.createOnNext(T t)
Creates and returns a
Notification of variety
Kind.OnNext, and assigns it a value.
|
| Modifier and Type | Method and Description |
|---|---|
Observable |
Observable.materialize()
Returns an Observable that represents all of the emissions
and notifications from the source Observable into emissions marked with their original types within
Notification objects.
|
| Modifier and Type | Method and Description |
|---|---|
Observable |
Observable.doOnEach(Action1
Modifies the source Observable so that it invokes an action for each item it emits.
|
| Modifier and Type | Method and Description |
|---|---|
Observable |
OnSubscribeRedo.RetryWithPredicate.call(Observable
|
Subscriber |
OperatorDematerialize.call(Subscriber
|
| Modifier and Type | Method and Description |
|---|---|
void |
BlockingOperatorToIterator.SubscriberIterator.onNext(Notification
|
| Modifier and Type | Method and Description |
|---|---|
Observable |
OnSubscribeRedo.RedoFinite.call(Observable
|
Observable |
OnSubscribeRedo.RetryWithPredicate.call(Observable
|
Subscriber |
OperatorMaterialize.call(Subscriber
|
static <T> Observable |
OnSubscribeRedo.redo(Observable
|
static <T> Observable |
OnSubscribeRedo.repeat(Observable
|
static <T> Observable |
OnSubscribeRedo.repeat(Observable
|
static <T> Observable |
OnSubscribeRedo.retry(Observable
|
static <T> Observable |
OnSubscribeRedo.retry(Observable
|
| Modifier and Type | Method and Description |
|---|---|
List |
TestSubscriber.getOnCompletedEvents()
Returns the
Notifications representing each time this
Subscriber was notified of sequence completion via
TestSubscriber, as a
List.
|
List |
TestObserver.getOnCompletedEvents()
Get the
Notifications representing each time this observer was notified of sequence completion via
TestObserver, as a
List.
|