Discuss this help topic in SecureBlackbox Forum

TElSessionPool.Timeout

TElSessionPool     See also     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


Specifies the lifetime of sessions.

Declaration

[C#]
    int Timeout;

[VB.NET]
    Property Timeout As Integer

[Pascal]
    property Timeout : longword;

[C++]
    int32_t get_Timeout();
    void set_Timeout(int32_t Value);

[PHP]
    integer get_Timeout()
    void set_Timeout(integer $Value)

[Java]
    int getTimeout();
    void setTimeout(int Value);

Parameters

  • Timeout - The value (in milliseconds) of session lifetime since last call to it

Description

    This property defines how long the inactive session stays in TElSessionPool. Inactive means that it were no re-connections made to this session for certain period of time.

    The check up of timeout is done every Interval milliseconds.

See also:     Interval    

Discuss this help topic in SecureBlackbox Forum