| IO::Async::Set::Select |
IO::Async::Set::Select - backward-compatibility wrapper around
IO::Async::Loop::Select
This class should not be used in new code, and is provided for backward
compatibility for older applications that still use it. 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.
This function wraps a call to IO::Async::Set::Select->new().
the IO::Async::Loop::Select manpage - a Loop using the select() syscall
Paul Evans <leonerd@leonerd.org.uk>
| IO::Async::Set::Select |