RxJavaPlugins
hook implementations enalbed via
RxJavaProtocolValidator.See: Description
| Class | Description |
|---|---|
| RxJavaProtocolValidator |
Installs assembly hooks that validate the Reactive-Streams and derived
protocols are honored.
|
| Exception | Description |
|---|---|
| MultipleOnSubscribeCallsException |
Indicates there were multiple
onSubscribe calls. |
| MultipleTerminationsException |
Indicates there were multiple
onError or onComplete calls. |
| NullOnErrorParameterException |
Indicates the
onError was called with a null Throwable. |
| NullOnNextParameterException |
Indicates the
onNext was called with a null value. |
| NullOnSubscribeParameterException |
Indicates the
onSubscribe was called with a null Disposable or Subscription. |
| NullOnSuccessParameterException |
Indicates the
onSuccess was called with a null value. |
| OnNextAfterTerminationException |
The
onNext was invoked after an onError or onComplete call. |
| OnSubscribeNotCalledException |
The
onSubscribe was not called before calling onNext,
onSuccess, onError or onComplete. |
| OnSuccessAfterTerminationException |
The
onSuccess was invoked after an onError or onComplete call. |
| ProtocolNonConformanceException |
Base exception type indicating a failure in conforming the Reactive-Streams
or derived protocol.
|
RxJavaPlugins
hook implementations enalbed via
RxJavaProtocolValidator.