The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

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

Servlet::Http::HttpSession, Servlet::Http::HttpSessionEvent,

AUTHOR

Brian Moseley, bcm@maz.org