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
FieldsModifier and TypeFieldDescriptionfinal intIdentifier of the connection.final intIdentifier of the server.final longIdentifier of the statement. -
Constructor Summary
ConstructorsConstructorDescriptionStatementEvent(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
-