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

NAME

IO::Async::Buffer - backward-compatibility wrapper around IO::Async::Stream

SYNOPSIS

This class should not be used in new code. It has been renamed to IO::Async::Stream. Any application using this class should simply change

 use IO::Async::Buffer;

 my $buffer = IO::Async::Buffer->new( .... );

into

 use IO::Async::Stream;

 my $stream = IO::Async::Stream->new( .... );

The behaviour has not otherwise changed.

SEE ALSO

AUTHOR

Paul Evans <leonerd@leonerd.org.uk>