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
public abstract class ExecutionEvent extends Event
Event concerning the execution of an MDX statement.
-
-
Field Summary
Fields Modifier and Type Field Description int
connectionId
Identifier of the connection.long
executionId
Identifier of the execution.int
serverId
Identifier of the server.long
statementId
Identifier of the statement.
-
Constructor Summary
Constructors Constructor Description ExecutionEvent(long timestamp, int serverId, int connectionId, long statementId, long executionId)
Creates an ExecutionEvent.
-
-
-
Field Detail
-
serverId
public final int serverId
Identifier of the server.
-
connectionId
public final int connectionId
Identifier of the connection.
-
statementId
public final long statementId
Identifier of the statement. Unique for the lifetime of the JVM.
-
executionId
public final long executionId
Identifier of the execution. Unique for the lifetime of the JVM.
-
-
Constructor Detail
-
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
-
-