| HTTP-Session documentation | Contained in the HTTP-Session distribution. |
HTTP::Session::State::Null - nop
HTTP::Session->new(
state => HTTP::Session::State::Null->new(),
store => ...,
request => ...,
);
this is a dummy session state module =)
nothing.
for internal use only
| HTTP-Session documentation | Contained in the HTTP-Session distribution. |
package HTTP::Session::State::Null; use strict; use HTTP::Session::State::Base; sub get_session_id { } sub response_filter { } 1; __END__