Search Results for

    Show / Hide Table of Contents

    Class ConnectionPoolBusyException

    The exception that is thrown when all connections in the pool have reached their maximum number of in-flight requests.

    Inheritance
    object
    Exception
    NoConnectionAvailableException
    ConnectionPoolBusyException
    Implements
    ISerializable
    Inherited Members
    Exception.GetBaseException()
    Exception.GetObjectData(SerializationInfo, StreamingContext)
    Exception.GetType()
    Exception.ToString()
    Exception.Data
    Exception.HelpLink
    Exception.HResult
    Exception.InnerException
    Exception.Message
    Exception.Source
    Exception.StackTrace
    Exception.TargetSite
    Exception.SerializeObjectState
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    Namespace: Gremlin.Net.Driver.Exceptions
    Assembly: Gremlin.Net.dll
    Syntax
    public class ConnectionPoolBusyException : NoConnectionAvailableException, ISerializable

    Constructors

    ConnectionPoolBusyException(int, int)

    Initializes a new instance of the ConnectionPoolBusyException class.

    Declaration
    public ConnectionPoolBusyException(int poolSize, int maxInProcessPerConnection)
    Parameters
    Type Name Description
    int poolSize
    int maxInProcessPerConnection

    Properties

    MaxInProcessPerConnection

    Gets the maximum number of in-flight requests that can occur on a connection.

    Declaration
    public int MaxInProcessPerConnection { get; }
    Property Value
    Type Description
    int

    PoolSize

    Gets the size of the connection pool.

    Declaration
    public int PoolSize { get; }
    Property Value
    Type Description
    int

    Implements

    ISerializable
    In this article
    Back to top Copyright © 2018 The Apache Software Foundation