Class MissingBackpressureException

java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
io.reactivex.rxjava4.exceptions.MissingBackpressureException
All Implemented Interfaces:
Serializable

public final class MissingBackpressureException extends RuntimeException
Indicates that an operator attempted to emit a value but the downstream wasn't ready for it.
See Also:
  • Field Details

    • DEFAULT_MESSAGE

      public static final String DEFAULT_MESSAGE
      The default error message.

      This can happen if the downstream doesn't call

      invalid reference
      org.reactivestreams.Subscription#request(long)
      in time or at all.
      Since:
      3.1.6
      See Also:
  • Constructor Details

    • MissingBackpressureException

      public MissingBackpressureException()
      Constructs a MissingBackpressureException without message or cause.
    • MissingBackpressureException

      public MissingBackpressureException(String message)
      Constructs a MissingBackpressureException with the given message but no cause.
      Parameters:
      message - the error message
  • Method Details