Search Results for

    Show / Hide Table of Contents

    Class ThinClientConfiguration

    Server-side thin client specific configuration.

    Inheritance
    object
    ThinClientConfiguration
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: Apache.Ignite.Core.Configuration
    Assembly: Apache.Ignite.Core.dll
    Syntax
    public class ThinClientConfiguration

    Constructors

    ThinClientConfiguration()

    Initializes a new instance of the ThinClientConfiguration class.

    Declaration
    public ThinClientConfiguration()

    Fields

    DefaultMaxActiveComputeTasksPerConnection

    Default limit of active compute tasks per connection.

    Declaration
    public const int DefaultMaxActiveComputeTasksPerConnection = 0
    Field Value
    Type Description
    int

    DefaultMaxActiveTxPerConnection

    Default limit of active transactions count per connection.

    Declaration
    public const int DefaultMaxActiveTxPerConnection = 100
    Field Value
    Type Description
    int

    DefaultSendServerExceptionStackTraceToClient

    Default value for SendServerExceptionStackTraceToClient property.

    Declaration
    public const bool DefaultSendServerExceptionStackTraceToClient = false
    Field Value
    Type Description
    bool

    Properties

    MaxActiveComputeTasksPerConnection

    Gets or sets active compute tasks per connection limit. Value 0 means that compute grid functionality is disabled for thin clients.

    Declaration
    public int MaxActiveComputeTasksPerConnection { get; set; }
    Property Value
    Type Description
    int

    MaxActiveTxPerConnection

    Gets or sets active transactions count per connection limit.

    Declaration
    public int MaxActiveTxPerConnection { get; set; }
    Property Value
    Type Description
    int

    SendServerExceptionStackTraceToClient

    Gets or sets a value indicating whether server exception stack trace should be included in client exception details, or just the message.

    Default is false.
    Declaration
    public bool SendServerExceptionStackTraceToClient { get; set; }
    Property Value
    Type Description
    bool
    In this article
    Back to top © 2015 - 2019 The Apache Software Foundation