|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface IMonitor
Basic support for application monitoring and metrics. This interface defines events; the implementation decides what to do with them (such as record them to a database).
Method Summary | |
---|---|
void |
pageCreateBegin(String pageName)
Invoked before constructing a page. |
void |
pageCreateEnd(String pageName)
Invoked after successfully constructing a page and all of its components. |
void |
pageLoadBegin(String pageName)
Invoked when a page is loaded. |
void |
pageLoadEnd(String pageName)
Invoked once a page is completely loaded and rolled back to its prior state. |
void |
pageRenderBegin(String pageName)
Invoked before a page render begins. |
void |
pageRenderEnd(String pageName)
Invoked after a page has succesfully rendered. |
void |
pageRewindBegin(String pageName)
Invoked before a page rewind (to respond to an action) begins. |
void |
pageRewindEnd(String pageName)
Invoked after a page has succesfully been rewound (which includes any activity related to the action listener). |
void |
serviceBegin(String serviceName,
String detailMessage)
Invoked when a service begins processing. |
void |
serviceEnd(String serviceName)
Invoked when a service successfully ends. |
void |
serviceException(Throwable exception)
Invoked when a service throws an exception rather than completing normally. |
void |
sessionBegin()
Invoked when a session is initiated. |
Method Detail |
---|
void pageCreateBegin(String pageName)
void pageCreateEnd(String pageName)
void pageLoadBegin(String pageName)
void pageLoadEnd(String pageName)
void pageRenderBegin(String pageName)
void pageRenderEnd(String pageName)
void pageRewindBegin(String pageName)
void pageRewindEnd(String pageName)
void serviceBegin(String serviceName, String detailMessage)
void serviceEnd(String serviceName)
void serviceException(Throwable exception)
serviceException() is always invoked before
serviceEnd(String)
.
void sessionBegin()
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |