| Class | Description |
|---|---|
| CompletableAsPublisher<T> |
Wraps a Completable and exposes it as a Publisher.
|
| PublisherAdapter<T> | |
| PublisherAsCompletable |
Wraps an arbitrary Publisher and exposes it as a Completable, ignoring any onNext events.
|
| PublisherAsSingle<T> |
Wraps a Publisher and exposes it as a Single, signalling NoSuchElementException
if the Publisher is empty or IndexOutOfBoundsExcepion if the Publisher produces
more than one element.
|
| RxJavaSynchronizedProducer | |
| SingleAsPublisher<T> |
Wraps a Single and exposes it as a Publisher.
|
| SubscriberAdapter<T> |