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 AtomicLongSQL_STATEMENT_CLOSE_COUNTNumber of timesSqlStatement.closehas been called.static AtomicLongSQL_STATEMENT_EXECUTE_COUNTNumber of timesSqlStatement.executehas completed successfully.static Set<Long>SQL_STATEMENT_EXECUTING_IDSIds of allSqlStatementinstances 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.executehas completed successfully.
-
SQL_STATEMENT_CLOSE_COUNT
public static final AtomicLong SQL_STATEMENT_CLOSE_COUNT
Number of timesSqlStatement.closehas been called.
-
-