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

NAME

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

SYNOPSIS

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

 use IO::Async::Set::Select;

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

into

 use IO::Async::Loop::Select;

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

The behaviour has not otherwise changed.

SEE ALSO

AUTHOR

Paul Evans <leonerd@leonerd.org.uk>