| OpenFrame-WebApp documentation | view source | Contained in the OpenFrame-WebApp distribution. |
OpenFrame::WebApp::Session::Factory - a factory for various types of session wrappers.
use OpenFrame::WebApp::Session::Factory;
my $sfactory = new OpenFrame::WebApp::Session::Factory()
->type( 'file_cache' )
->expiry( $period ); # optional
my $session = $sfactory->new_session( @args );
my $session = $sfactory->fetch_session( $id );
The OpenFrame::WebApp::Session::Factory class should be used to create
sessions as needed. For convenience, it lets you specify a default session
expiry period that is passed to all new sessions.
This class inherits its interface from OpenFrame::WebApp::Factory.
It uses OpenFrame::WebApp::Session-types()> to resolve class names.
set/get optional session expiry.
creates a new session wrapper of the appropriate session_type and sets
its expiry() (if set). passes all arguments to the sessions' constructor.
fetches the session with the given $id. returns undef if not found.
Steve Purkis <spurkis@epn.nu>
Copyright (c) 2003 Steve Purkis. All rights reserved. Released under the same license as Perl itself.
| OpenFrame-WebApp documentation | view source | Contained in the OpenFrame-WebApp distribution. |