| Interface | Description |
|---|---|
| Cancellable | |
| CancellableSubscriber<T> | |
| MultiEmitter<T> |
An object allowing to send signals to the downstream
Multi. |
| MultiSubscriber<T> |
A
Subscriber receiving calls to Subscriber.onSubscribe(Subscription) once after passing an instance of
Subscriber to Publisher.subscribe(Subscriber). |
| UniEmitter<T> |
An object allowing to send signals to the downstream
Uni. |
| UniSubscriber<T> |
Will receive call to
UniSubscriber.onSubscribe(UniSubscription) once after passing an instance of this UniSubscriber
to UniSubscribe.withSubscriber(UniSubscriber) retrieved from Uni.subscribe(). |
| UniSubscription |
A
Subscription for the Uni type. |
| Class | Description |
|---|---|
| SafeSubscriber<T> |
Wraps another Subscriber and ensures all onXXX methods conform the protocol
(except the requirement for serialized access).
|
| SerializedSubscriber<T> |
Subscriber that makes sure signals are delivered sequentially in case the onNext, onError or onComplete methods are
called concurrently.
|
| Subscribers | |
| SwitchableSubscriptionSubscriber<O> |
An implementation of
Subscription that allows switching the upstream, dealing with the requests accordingly. |
| Enum | Description |
|---|---|
| BackPressureStrategy |
The back pressure strategies.
|
| Exception | Description |
|---|---|
| BackPressureFailure |
Copyright © 2019–2020 SmallRye. All rights reserved.