Package mondrian.server.monitor
Interface Monitor
- 
 public interface MonitorInformation about a Mondrian server.Also, the sendEvent(Event)allows a Mondrian subsystem to notify the monitor of some event. The event is handled asynchronously. We strongly recommend that the event's fields simple, final values; one would not want the contents to have changed when the event is processed, or for the event to prevent a resource from being garbage-collected.All methods are thread-safe. 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description List<ConnectionInfo>getConnections()ServerInfogetServer()List<SqlStatementInfo>getSqlStatements()List<StatementInfo>getStatements()voidsendEvent(Event event)Sends an event to the monitor.
 
- 
- 
- 
Method Detail- 
getServerServerInfo getServer() 
 - 
getConnectionsList<ConnectionInfo> getConnections() 
 - 
getStatementsList<StatementInfo> getStatements() 
 - 
getSqlStatementsList<SqlStatementInfo> getSqlStatements() 
 - 
sendEventvoid sendEvent(Event event) Sends an event to the monitor.- Parameters:
- event- Event
 
 
- 
 
-