Servlet::Http::HttpSessionActivationListener - session listener interface
$listener->sessionDidActivated($event);
$listener->sessionWillPassivate($event);
Objects that are bound to a session may listen to container events notifying
them that sessions will be passivated or activated. A container that migrates
sessions between interpreters or persists sessions is required to notify all
attributes bound to sessions implementing this interface.
- sessionDidActivate($event)
- Notification that the session has just been activated.
Parameters:
- $event
- an instance of Servlet::Http::HttpSessionEvent
- sessionWillPassivate($event)
- Notification that the session is about to be passivated.
Parameters:
- $event
- an instance of Servlet::Http::HttpSessionEvent
Servlet::Http::HttpSession, Servlet::Http::HttpSessionEvent,
Brian Moseley, bcm@maz.org