Package mondrian.server.monitor
Class StatementEvent
java.lang.Object
mondrian.server.monitor.Event
mondrian.server.monitor.StatementEvent
- All Implemented Interfaces:
Message
- Direct Known Subclasses:
StatementEndEvent
,StatementStartEvent
Event concerning an MDX statement.
-
Field Summary
Modifier and TypeFieldDescriptionfinal int
Identifier of the connection.final int
Identifier of the server.final long
Identifier of the statement. -
Constructor Summary
ConstructorDescriptionStatementEvent
(long timestamp, int serverId, int connectionId, long statementId) Creates a StatementEvent. -
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.
-
-
Constructor Details
-
StatementEvent
public StatementEvent(long timestamp, int serverId, int connectionId, long statementId) Creates a StatementEvent.- Parameters:
timestamp
- TimestampserverId
- Server idconnectionId
- Connection idstatementId
- Statement id
-