| IO::Async::Set::IO_Poll - backward-compatibility wrapper around C<IO::Async::Loop::IO_Poll> |
IO::Async::Set::IO_Poll - backward-compatibility wrapper around
IO::Async::Loop::IO_Poll
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::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.
This function wraps a call to IO::Async::Set::IO_Poll->new().
the IO::Async::Loop::IO_Poll manpage - a Loop using an IO::Poll object
Paul Evans <leonerd@leonerd.org.uk>
| IO::Async::Set::IO_Poll - backward-compatibility wrapper around C<IO::Async::Loop::IO_Poll> |