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

NAME

IO::Async::Set::IO_Poll - backward-compatibility wrapper around IO::Async::Loop::IO_Poll

SYNOPSIS

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

 use IO::Async::Set::IO_Poll;

 my $set = IO::Async::Set::IO_Poll->new( .... );

into

 use IO::Async::Loop::IO_Poll;

 my $loop = IO::Async::Loop::IO_Poll->new( .... );

The behaviour has not otherwise changed.

SEE ALSO

AUTHOR

Paul Evans <leonerd@leonerd.org.uk>