Package mondrian.server.monitor
Class ExecutionEvent
java.lang.Object
mondrian.server.monitor.Event
mondrian.server.monitor.ExecutionEvent
- All Implemented Interfaces:
Message
- Direct Known Subclasses:
CellCacheEvent,ExecutionEndEvent,ExecutionPhaseEvent,ExecutionStartEvent
Event concerning the execution of an MDX statement.
-
Field Summary
FieldsModifier and TypeFieldDescriptionfinal intIdentifier of the connection.final longIdentifier of the execution.final intIdentifier of the server.final longIdentifier of the statement. -
Constructor Summary
ConstructorsConstructorDescriptionExecutionEvent(long timestamp, int serverId, int connectionId, long statementId, long executionId) Creates an ExecutionEvent. -
Method Summary
Methods inherited from class mondrian.server.monitor.Event
setContextMap
-
Field Details
-
serverId
public final int serverIdIdentifier of the server. -
connectionId
public final int connectionIdIdentifier of the connection. -
statementId
public final long statementIdIdentifier of the statement. Unique for the lifetime of the JVM. -
executionId
public final long executionIdIdentifier of the execution. Unique for the lifetime of the JVM.
-
-
Constructor Details
-
ExecutionEvent
public ExecutionEvent(long timestamp, int serverId, int connectionId, long statementId, long executionId) Creates an ExecutionEvent.- Parameters:
timestamp- TimestampserverId- Server idconnectionId- Connection idstatementId- Statement idexecutionId- Execution id
-