Checking in changes prior to tagging of version 0.09_01. Changelog diff is:
[catagits/Web-Session.git] / lib / Plack / Session / Store / Null.pm
CommitLineData
9bb20750 1package Plack::Session::Store::Null;
2use strict;
3use warnings;
4
91b87895 5our $VERSION = '0.09_01';
30cc0a71 6our $AUTHORITY = 'cpan:STEVAN';
7
9bb20750 8sub new { bless {} => shift }
9sub fetch {}
10sub store {}
08b2e16d 11sub remove {}
74e0eff0 12
9bb20750 131;
14
15__END__
16
17=pod
18
19=head1 NAME
20
21Plack::Session::Store::Null - Null store
22
3d92cf47 23=head1 SYNOPSIS
24
25 use Plack::Builder;
26 use Plack::Middleware::Session;
27 use Plack::Session::Store::Null;
28
29 my $app = sub {
30 return [ 200, [ 'Content-Type' => 'text/plain' ], [ 'Hello Foo' ] ];
31 };
32
33 builder {
34 enable 'Session',
35 store => Plack::Session::Store::Null->new;
36 $app;
37 };
38
9bb20750 39=head1 DESCRIPTION
40
41Sometimes you don't want to store anything in your sessions, but
42L<Plack::Session> requires a C<store> instance, so you can use this
43one and all methods will return null.
44
3d92cf47 45This is a subclass of L<Plack::Session::Store> and implements
46it's full interface.
47
9bb20750 48=head1 BUGS
49
50All complex software has bugs lurking in it, and this module is no
51exception. If you find a bug please either email me, or add the bug
52to cpan-RT.
53
54=head1 AUTHOR
55
56Stevan Little E<lt>stevan.little@iinteractive.comE<gt>
57
58=head1 COPYRIGHT AND LICENSE
59
000c696e 60Copyright 2009, 2010 Infinity Interactive, Inc.
9bb20750 61
62L<http://www.iinteractive.com>
63
64This library is free software; you can redistribute it and/or modify
65it under the same terms as Perl itself.
66
67=cut
68