PrintLockingSystemStats Method (Boolean, Boolean, Boolean, Boolean, Boolean, Boolean)

BerkeleyDB

Display the locking subsystem statistical information, as described by LockStats.

Namespace:  BerkeleyDB
Assembly:  libdb_dotnet48 (in libdb_dotnet48.dll) Version: 4.8.24.0

Syntax

C#
public void PrintLockingSystemStats(
	bool PrintAll,
	bool ClearStats,
	bool ConflictMatrix,
	bool Lockers,
	bool Objects,
	bool Parameters
)
Visual Basic (Declaration)
Public Sub PrintLockingSystemStats ( _
	PrintAll As Boolean, _
	ClearStats As Boolean, _
	ConflictMatrix As Boolean, _
	Lockers As Boolean, _
	Objects As Boolean, _
	Parameters As Boolean _
)
Visual C++
public:
void PrintLockingSystemStats(
	bool PrintAll, 
	bool ClearStats, 
	bool ConflictMatrix, 
	bool Lockers, 
	bool Objects, 
	bool Parameters
)

Parameters

PrintAll
Type: System..::.Boolean
If true, display all available information.
ClearStats
Type: System..::.Boolean
If true, reset statistics after displaying their values.
ConflictMatrix
Type: System..::.Boolean
If true, display the lock conflict matrix.
Lockers
Type: System..::.Boolean
If true, Display the lockers within hash chains.
Objects
Type: System..::.Boolean
If true, display the lock objects within hash chains.
Parameters
Type: System..::.Boolean
If true, display the locking subsystem parameters.

See Also