Package mondrian.server.monitor
Class ExecutionStartEvent
- java.lang.Object
-
- mondrian.server.monitor.Event
-
- mondrian.server.monitor.ExecutionEvent
-
- mondrian.server.monitor.ExecutionStartEvent
-
- All Implemented Interfaces:
Message
public class ExecutionStartEvent extends ExecutionEvent
Event signalling the start of executing an MDX statement.
-
-
Field Summary
Fields Modifier and Type Field Description String
mdx
-
Fields inherited from class mondrian.server.monitor.ExecutionEvent
connectionId, executionId, serverId, statementId
-
-
Constructor Summary
Constructors Constructor Description ExecutionStartEvent(long timestamp, int serverId, int connectionId, long statementId, long executionId, String mdx)
Creates an ExecutionStartEvent.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <T> T
accept(Visitor<T> visitor)
Dispatches a call to the appropriatevisit
method onVisitor
.String
toString()
-
Methods inherited from class mondrian.server.monitor.Event
setContextMap
-
-
-
-
Field Detail
-
mdx
public final String mdx
-
-
Constructor Detail
-
ExecutionStartEvent
public ExecutionStartEvent(long timestamp, int serverId, int connectionId, long statementId, long executionId, String mdx)
Creates an ExecutionStartEvent.- Parameters:
timestamp
- TimestampserverId
- Server idconnectionId
- Connection idstatementId
- Statement idexecutionId
- Execution idmdx
- MDX string
-
-