Class MissingBackpressureException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
io.reactivex.rxjava4.exceptions.MissingBackpressureException
- All Implemented Interfaces:
Serializable
Indicates that an operator attempted to emit a value but the downstream wasn't ready for it.
- See Also:
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionConstructs a MissingBackpressureException without message or cause.MissingBackpressureException(String message) Constructs a MissingBackpressureException with the given message but no cause. -
Method Summary
Modifier and TypeMethodDescriptionstatic MissingBackpressureExceptionConstructs a newMissingBackpressureExceptionwith the default message "Could not emit value due to lack of requests".Methods inherited from class Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Field Details
-
DEFAULT_MESSAGE
The default error message.This can happen if the downstream doesn't call
in time or at all.invalid reference
org.reactivestreams.Subscription#request(long)- Since:
- 3.1.6
- See Also:
-
-
Constructor Details
-
MissingBackpressureException
public MissingBackpressureException()Constructs a MissingBackpressureException without message or cause. -
MissingBackpressureException
Constructs a MissingBackpressureException with the given message but no cause.- Parameters:
message- the error message
-
-
Method Details
-
createDefault
Constructs a newMissingBackpressureExceptionwith the default message "Could not emit value due to lack of requests".- Returns:
- the new
MissingBackpressureExceptioninstance. - Since:
- 3.1.6
-