IO::Async::Set::Select


NAME

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


SYNOPSIS

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.


CONSTRUCTOR

$set = IO::Async::Set::Select->new( %params )

This function wraps a call to IO::Async::Set::Select->new().


SEE ALSO


AUTHOR

Paul Evans <leonerd@leonerd.org.uk>

 IO::Async::Set::Select