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:

$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


SEE ALSO

the Servlet::Http::HttpSession manpage, the Servlet::Http::HttpSessionEvent manpage,


AUTHOR

Brian Moseley, bcm@maz.org