pod sketch for Request lifecycle
[catagits/Catalyst-Runtime.git] / lib / Catalyst / IOC / LifeCycle / Request.pm
1 package Catalyst::IOC::LifeCycle::Request;
2 use Moose::Role;
3 use namespace::autoclean;
4
5 # based on Bread::Board::LifeCycle::Request from OX
6 # just behaves like a singleton - ::Request instances
7 # will get flushed after the response is sent
8 with 'Bread::Board::LifeCycle::Singleton';
9
10 1;
11
12 __END__
13
14 =pod
15
16 =head1 NAME
17
18 Catalyst::IOC::LifeCycle::Request - Components that last for one request
19
20 =head1 SYNOPSIS
21
22 =head1 DESCRIPTION
23
24 =head1 METHODS
25
26 =head1 AUTHORS
27
28 Catalyst Contributors, see Catalyst.pm
29
30 =head1 COPYRIGHT
31
32 This library is free software. You can redistribute it and/or modify it under
33 the same terms as Perl itself.
34
35 =cut