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

NAME

IO::Async::Loop::IO_Poll - compatibility wrapper for IO::Async::Loop::Poll

SYNOPSIS

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

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

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

into

 use IO::Async::Loop::Poll;

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

The behaviour has not otherwise changed.

AUTHOR

Paul Evans <leonerd@leonerd.org.uk>