NAME
Servlet::Http::HttpSessionActivationListener - session listener interface
SYNOPSIS
$listener->sessionDidActivated($event);
$listener->sessionWillPassivate($event);
DESCRIPTION
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.
METHODS
- sessionDidActivate($event)
-
Notification that the session has just been activated.
Parameters:
- sessionWillPassivate($event)
-
Notification that the session is about to be passivated.
Parameters:
SEE ALSO
Servlet::Http::HttpSession, Servlet::Http::HttpSessionEvent,
AUTHOR
Brian Moseley, bcm@maz.org