Class QueueFullException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
java.lang.IllegalStateException
io.servicetalk.concurrent.internal.QueueFullException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
QueueFullAndRejectedSubscribeException
Exception indicating a bounded queue is full.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionQueueFullException
(String queueIdentifier) Create a new instance.QueueFullException
(String queueIdentifier, int capacity) Create a new instance. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
QueueFullException
Create a new instance.- Parameters:
queueIdentifier
- Identifier for the queue that is full.
-
QueueFullException
Create a new instance.- Parameters:
queueIdentifier
- Identifier for the queue that is full.capacity
- Capacity for the queue.
-