Discuss this help topic in SecureBlackbox Forum

TElSessionPool.MaxCount

TElSessionPool     See also     


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


Specifies the maximum number of sessions that are stored in TElSessionPool.

Declaration

[C#]
    int MaxCount;

[VB.NET]
    Property MaxCount As Integer

[Pascal]
    property MaxCount : longword;

[C++]
    int32_t get_MaxCount();
    void set_MaxCount(int32_t Value);

[PHP]
    integer get_MaxCount()
    void set_MaxCount(integer $Value)

[Java]
    int getMaxCount();
    void setMaxCount(int Value);

Parameters

  • MaxCount - The value of maximum number of sessions that TElSessionPool should store in.

Description

    This property defines how many sessions should be stored in TElSessionPool. If the new session is added, and there is maximum number of sessions in TElSessionPool already, the oldest session will be deleted.

    The check up of MaxCount is made every Interval milliseconds.

See also:     Interval    

Discuss this help topic in SecureBlackbox Forum