Sophie

Sophie

distrib > Mageia > 7 > armv7hl > media > core-release > by-pkgid > fcb80c15e04080e741925f09ed115f0f > files > 16

perl-Plack-1.4.700-2.mga7.noarch.rpm

use AnyEvent;
my $app = sub {
    my $env = shift;

    warn "This app needs a server that supports psgi.streaming"
        unless $env->{'psgi.streaming'};

    return sub {
        my $respond = shift;
        my $w = $respond->([ 200, ['X-Foo' => 'bar', 'Content-Type' => 'text/plain'] ]);
        my $t; $t = AE::timer 0, 1, sub {
            $t;
            # TODO handle client disconnect (broken pipe) and poll_cb
            $w->write(time . "\n");
        };
    };
};