Class ConnectionPoolTooBusyException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
io.vertx.core.VertxException
io.vertx.core.http.ConnectionPoolTooBusyException
- All Implemented Interfaces:
Serializable
Represents a failure to add a HttpClientRequest to the wait queue on an ConnectionManager.
If an HttpClient receives a request but is already handling maxPoolSize requests it will attempt to put the new request on it's wait queue. If the maxWaitQueueSize is set and the new request would cause the wait queue to exceed that size then the request will receive this exception.
- Author:
- Gil Markham, Junbo Wang
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConnectionPoolTooBusyException(String message) Create a ConnectionPoolTooBusyException -
Method Summary
Methods inherited from class VertxException
noStackTrace, noStackTrace, noStackTraceMethods inherited from class Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ConnectionPoolTooBusyException
Create a ConnectionPoolTooBusyException- Parameters:
message- the failure message
-