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

NAME

Eve::Event::PsgiRequestReceived - HTTP request received through PSGI.

SYNOPSIS

    use Eve::Event::PsgiRequestReceived;

    Eve::Event::PsgiRequestReceived->new(
        event_map => $event_map,
        env_hash => $env);

DESCRIPTION

Eve::Event::PsgiRequestReceived is an event assumed to signal about a new HTTP request that was dispatched by a PSGI handler. It differs from a plain HTTP request event in a way that it must contain the environment hash that was passed by the handler.

Properties

env_hash

Constructor arguments

event_map

an event map object

env_hash

an environment hash passed by the PSGI handler.

METHODS

init()

SEE ALSO

Eve::Event::HttpRequestReceived
Eve::EventMap

LICENSE AND COPYRIGHT

Copyright 2012 Igor Zinovyev.

This program is free software; you can redistribute it and/or modify it under the terms of either: the GNU General Public License as published by the Free Software Foundation; or the Artistic License.

See http://dev.perl.org/licenses/ for more information.

AUTHOR

Igor Zinovyev