Show / Hide Table of Contents

    Class ConnectionPoolSettings

    Holds settings for the Gremlin.Net.Driver.ConnectionPool.

    Inheritance
    System.Object
    ConnectionPoolSettings
    Inherited Members
    System.Object.Equals(System.Object)
    System.Object.Equals(System.Object, System.Object)
    System.Object.GetHashCode()
    System.Object.GetType()
    System.Object.MemberwiseClone()
    System.Object.ToString()
    System.Object.ReferenceEquals(System.Object, System.Object)
    Namespace: Gremlin.Net.Driver
    Assembly: cs.temp.dll.dll
    Syntax
    public class ConnectionPoolSettings

    Properties

    MaxInProcessPerConnection

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

    Declaration
    public int MaxInProcessPerConnection { get; set; }
    Property Value
    Type Description
    System.Int32
    Remarks

    The default value is 32. A is thrown if this limit is reached on all connections when a new request comes in.

    PoolSize

    Gets or sets the size of the connection pool.

    Declaration
    public int PoolSize { get; set; }
    Property Value
    Type Description
    System.Int32
    Remarks

    The default value is 4.

    Back to top Copyright © 2018 The Apache Software Foundation