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>