Package mondrian.util
Class Counters
- java.lang.Object
-
- mondrian.util.Counters
-
public abstract class Counters extends Object
A collection of counters. Used internally for logging and consistency-checking purposes. Should not be relied upon by applications.
-
-
Field Summary
Fields Modifier and Type Field Description static AtomicLong
SQL_STATEMENT_CLOSE_COUNT
Number of timesSqlStatement.close
has been called.static AtomicLong
SQL_STATEMENT_EXECUTE_COUNT
Number of timesSqlStatement.execute
has completed successfully.static Set<Long>
SQL_STATEMENT_EXECUTING_IDS
Ids of allSqlStatement
instances that are executing.
-
Constructor Summary
Constructors Constructor Description Counters()
-
-
-
Field Detail
-
SQL_STATEMENT_EXECUTE_COUNT
public static final AtomicLong SQL_STATEMENT_EXECUTE_COUNT
Number of timesSqlStatement.execute
has completed successfully.
-
SQL_STATEMENT_CLOSE_COUNT
public static final AtomicLong SQL_STATEMENT_CLOSE_COUNT
Number of timesSqlStatement.close
has been called.
-
-