Plack-Middleware-Timeout version 0.02
=====================================

INSTALLATION

To install this module type the following:

   perl Makefile.PL
   make
   make test
   make install

SYNOPSIS

    my $app = sub { ... };

    Plack::Middleeare::Timeout->wrap(
        $app,
        timeout  => 60,
        response => sub { # do something special with response object
            my $plack_response = shift;
            ...;
            return $plack_response;
        }
    );

DESCRIPTION

Timeout any plack requests at an arbitrary time.

DEPENDENCIES

Scope::Guard

COPYRIGHT AND LICENCE

Put the correct copyright and licence information here.

Copyright (C) 2015 by Tomasz Czepiel

This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself, either Perl version 5.20.1 or,
at your option, any later version of Perl 5 you may have available.


