Class BusyPoolException
Represents a client-side error indicating that all connections to a certain host have reached the maximum amount of in-flight requests supported.
Implements
Inherited Members
Namespace: Cassandra
Assembly: Cassandra.dll
Syntax
public class BusyPoolException : DriverException, ISerializable
Constructors
BusyPoolException(IPEndPoint, int, int)
Creates a new instance of BusyPoolException.
Declaration
public BusyPoolException(IPEndPoint address, int maxRequestsPerConnection, int connectionLength)
Parameters
Type | Name | Description |
---|---|---|
IPEndPoint | address | |
int | maxRequestsPerConnection | |
int | connectionLength |
Properties
Address
Gets the host address.
Declaration
public IPEndPoint Address { get; }
Property Value
Type | Description |
---|---|
IPEndPoint |
ConnectionLength
Gets the size of the pool.
Declaration
public int ConnectionLength { get; }
Property Value
Type | Description |
---|---|
int |
MaxRequestsPerConnection
Gets the maximum amount of requests per connection.
Declaration
public int MaxRequestsPerConnection { get; }
Property Value
Type | Description |
---|---|
int |