The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Yukki::Web - the Yukki web server

VERSION

version 0.111060

DESCRIPTION

This class handles the work of dispatching incoming requests to the various controllers.

ATTRIBUTES

router

This is the Path::Router that will determine where incoming requests are sent. It is automatically set to a Yukki::Web::Router instance.

METHODS

component

Helper method used by "controller" and "view".

controller

  my $controller = $app->controller($name);

Returns an instance of the named Yukki::Web::Controller.

view

  my $view = $app->view($name);

Returns an instance of the named Yukki::Web::View.

dispatch

  my $response = $app->dispatch($env);

This is a PSGI application in a method call. Given a PSGI environment, maps that to the appropriate controller and fires it. Whether successful or failure, it returns a PSGI response.

session_middleware

  enable $app->session_middleware;

Returns the setup for the PSGI session middleware.

AUTHOR

Andrew Sterling Hanenkamp <hanenkamp@cpan.org>

COPYRIGHT AND LICENSE

This software is copyright (c) 2011 by Qubling Software LLC.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.