• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

lib/Stream/H03-May-2022-194114

t/H06-Jun-2014-9676

ChangesH A D06-Jun-2014270 96

LICENSEH A D06-Jun-201418 KiB380292

MANIFESTH A D06-Jun-2014317 1817

META.jsonH A D06-Jun-20141.4 KiB6058

META.ymlH A D06-Jun-2014766 3231

Makefile.PLH A D06-Jun-20141,015 5235

READMEH A D06-Jun-2014957 3625

cpanfileH A D06-Jun-201458 32

dist.iniH A D06-Jun-201471 64

README

1NAME
2    Stream::Buffered - temporary buffer to save bytes
3
4SYNOPSIS
5      my $buf = Stream::Buffered->new($length);
6      $buf->print($bytes);
7
8      my $size = $buf->size;
9      my $fh   = $buf->rewind;
10
11DESCRIPTION
12    Stream::Buffered is a buffer class to store arbitrary length of byte
13    strings and then get a seekable filehandle once everything is buffered.
14    It uses PerlIO and/or temporary file to save the buffer depending on the
15    length of the size.
16
17SEE ALSO
18    Plack::Request
19
20AUTHOR
21    Tatsuhiko Miyagawa
22
23    This module is part of Plack, released as a separate distribution for
24    easier reuse.
25
26COPYRIGHT
27    The following copyright notice applies to all the files provided in this
28    distribution, including binary files, unless explicitly noted otherwise.
29
30    Copyright 2009-2011 Tatsuhiko Miyagawa
31
32LICENSE
33    This library is free software; you can redistribute it and/or modify it
34    under the same terms as Perl itself.
35
36