Interface EndOfRequestListener
-
- All Known Implementing Classes:
RestoreDirtySessionObjects
public interface EndOfRequestListener
Event listener interface for objects that need to know when the current request finishes.- See Also:
EndOfRequestEventHub
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
requestDidComplete()
Notified at the end of the request.
-
-
-
Method Detail
-
requestDidComplete
void requestDidComplete()
Notified at the end of the request. This notification occurs after the response has been sent to the client, which means that it is to late to (for example) create a new HttpSession.
-
-