From: Sebastian Riedel Date: Thu, 10 Nov 2005 01:41:52 +0000 (+0000) Subject: Added some pod X-Git-Tag: 5.7099_04~979 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=1f9cb7c179c8e4077d99badf31f3a356efdc809c Added some pod --- diff --git a/lib/Catalyst.pm b/lib/Catalyst.pm index 9fee7be..3d2f825 100644 --- a/lib/Catalyst.pm +++ b/lib/Catalyst.pm @@ -789,6 +789,10 @@ sub benchmark { Contains the components. +=item $c->context_class($class) + +Contains the context class. + =item $c->counter Returns a hashref containing coderefs and execution counts. @@ -806,6 +810,10 @@ Dispatch request to actions. sub dispatch { my $c = shift; $c->dispatcher->dispatch( $c, @_ ) } +=item $c->dispatcher_class($class) + +Contains the dispatcher class. + =item dump_these Returns a list of 2-element array references (name, structure) pairs that will @@ -818,6 +826,10 @@ sub dump_these { [ Request => $c->req ], [ Response => $c->res ], [ Stash => $c->stash ],; } +=item $c->engine_class($class) + +Contains the engine class. + =item $c->execute($class, $coderef) Execute a coderef in given class and catch exceptions. @@ -1315,6 +1327,14 @@ Prepare the output for writing. sub prepare_write { my $c = shift; $c->engine->prepare_write( $c, @_ ) } +=item $c->request_class($class) + +Contains the request class. + +=item $c->response_class($class) + +Contains the response class. + =item $c->read( [$maxlength] ) Read a chunk of data from the request body. This method is designed to be