The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

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>