Get connection pool statistics


Namespace: rocketsoftware.MVSP
Assembly: RocketMVSP (in RocketMVSP.dll)

Syntax

Visual Basic (Declaration)
Public Sub GetStats( _ 
   ByRef nTotalConnects As Integer,  _ 
   ByRef nNewConnects As Integer,  _ 
   ByRef nUsedAvailConnects As Integer,  _ 
   ByRef nWaitAtMaxConnects As Integer,  _ 
   ByRef nWaitNoLicConnects As Integer,  _ 
   ByRef nWaitLimitConnects As Integer,  _ 
   ByRef nWaitFailedConnects As Integer,  _ 
   ByRef nFailedConnects As Integer _ 
)
C#
public void GetStats(
   ref int nTotalConnects,
   ref int nNewConnects,
   ref int nUsedAvailConnects,
   ref int nWaitAtMaxConnects,
   ref int nWaitNoLicConnects,
   ref int nWaitLimitConnects,
   ref int nWaitFailedConnects,
   ref int nFailedConnects
)
C++
public:
 void GetStats(
   int% nTotalConnects,
   int% nNewConnects,
   int% nUsedAvailConnects,
   int% nWaitAtMaxConnects,
   int% nWaitNoLicConnects,
   int% nWaitLimitConnects,
   int% nWaitFailedConnects,
   int% nFailedConnects
) sealed 
J#
public void GetStats(
   int nTotalConnects,
   int nNewConnects,
   int nUsedAvailConnects,
   int nWaitAtMaxConnects,
   int nWaitNoLicConnects,
   int nWaitLimitConnects,
   int nWaitFailedConnects,
   int nFailedConnects
)
JScript
public  function GetStats(
   nTotalConnects : int,
   nNewConnects : int,
   nUsedAvailConnects : int,
   nWaitAtMaxConnects : int,
   nWaitNoLicConnects : int,
   nWaitLimitConnects : int,
   nWaitFailedConnects : int,
   nFailedConnects : int
)

Parameters

nTotalConnects
is an integer containing a counter of the total connects to the MVSP server
nNewConnects
is an integer containing a counters of the new connects to the MVSP server
nUsedAvailConnects
is an integer containing a counter of the used available connects to the MVSP server
nWaitAtMaxConnects
is an integer containing a counter of the wait at maximum capacity connects to the MVSP server
nWaitNoLicConnects
is an integer containing a counter of the wait of no license connects to the MVSP server
nWaitLimitConnects
is an integer containing a counter of the wait at limit capacity connects to the MVSP server
nWaitFailedConnects
is an integer containing a counter of waiting connects that failed to the MVSP server
nFailedConnects
is an integer containing a counter of non-waiting connects that failed to the MVSP server

See Also