Package io.reactivex.rxjava3.observers
Interface LambdaConsumerIntrospection
-
- All Known Implementing Classes:
AbstractDisposableAutoRelease,BoundedSubscriber,CallbackCompletableObserver,ConsumerSingleObserver,DisposableAutoReleaseMultiObserver,DisposableAutoReleaseObserver,DisposableAutoReleaseSubscriber,EmptyCompletableObserver,LambdaObserver,LambdaSubscriber,MaybeCallbackObserver
public interface LambdaConsumerIntrospectionAn interface that indicates that the implementing type is composed of individual components and exposes information about their behavior.NOTE: This is considered a read-only public API and is not intended to be implemented externally.
History: 2.1.4 - experimental
- Since:
- 2.2
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanhasCustomOnError()Returnstrueorfalseif a customonErrorconsumer has been provided.
-
-
-
Method Detail
-
hasCustomOnError
boolean hasCustomOnError()
Returnstrueorfalseif a customonErrorconsumer has been provided.- Returns:
trueif a customonErrorconsumer implementation was supplied. Returnsfalseif the implementation is missing an error consumer and thus using a throwing default implementation.
-
-