Package io.reactivex.rxjava3.observers
Interface LambdaConsumerIntrospection
-
- All Known Implementing Classes:
AbstractDisposableAutoRelease
,BoundedSubscriber
,CallbackCompletableObserver
,ConsumerSingleObserver
,DisposableAutoReleaseMultiObserver
,DisposableAutoReleaseObserver
,DisposableAutoReleaseSubscriber
,EmptyCompletableObserver
,LambdaObserver
,LambdaSubscriber
,MaybeCallbackObserver
public interface LambdaConsumerIntrospection
An 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 boolean
hasCustomOnError()
Returnstrue
orfalse
if a customonError
consumer has been provided.
-
-
-
Method Detail
-
hasCustomOnError
boolean hasCustomOnError()
Returnstrue
orfalse
if a customonError
consumer has been provided.- Returns:
true
if a customonError
consumer implementation was supplied. Returnsfalse
if the implementation is missing an error consumer and thus using a throwing default implementation.
-
-