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  onSubscribecalls. | 
| MultipleTerminationsException | Indicates there were multiple  onErrororonCompletecalls. | 
| NullOnErrorParameterException | Indicates the  onErrorwas called with anullThrowable. | 
| NullOnNextParameterException | Indicates the  onNextwas called with anullvalue. | 
| NullOnSubscribeParameterException | Indicates the  onSubscribewas called with anullDisposableorSubscription. | 
| NullOnSuccessParameterException | Indicates the  onSuccesswas called with anullvalue. | 
| OnNextAfterTerminationException | The  onNextwas invoked after anonErrororonCompletecall. | 
| OnSubscribeNotCalledException | The  onSubscribewas not called before callingonNext,onSuccess,onErrororonComplete. | 
| OnSuccessAfterTerminationException | The  onSuccesswas invoked after anonErrororonCompletecall. | 
| ProtocolNonConformanceException | Base exception type indicating a failure in conforming the Reactive-Streams
 or derived protocol. | 
RxJavaPlugins
 hook implementations enalbed via
 RxJavaProtocolValidator.