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::EV - use IO::Async with EV

SYNOPSIS

   use IO::Async::Loop::EV;

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

   $loop->add( ... );

   $loop->add( IO::Async::Signal->new(
         name => 'HUP',
         on_receipt => sub { ... },
   ) );

   $loop->run;

DESCRIPTION

This subclass of IO::Async::Loop uses EV to perform its work.

AUTHOR

Paul Evans <leonerd@leonerd.org.uk>