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

NAME

Mojo::IOWatcher::EV - EV non-blocking I/O watcher

SYNOPSIS

  use Mojo::IOWatcher::EV;

  my $watcher = Mojo::IOWatcher::EV->new;

DESCRIPTION

Mojo::IOWatcher::EV is a minimalistic non-blocking I/O watcher with libev support. Note that this module is EXPERIMENTAL and might change without warning!

METHODS

Mojo::IOWatcher::EV inherits all methods from Mojo::IOWatcher and implements the following new ones.

new

  my $watcher = Mojo::IOWatcher::EV->new;

Construct a new Mojo::IOWatcher::EV object.

change

  $watcher = $watcher->change($handle, $read, $write);

Change I/O events to watch handle for.

drop_handle

  $watcher->drop_handle($handle);

Drop handle.

recurring

  my $id = $watcher->recurring(3 => sub {...});

Create a new recurring timer, invoking the callback repeatedly after a given amount of seconds.

start

  $watcher->start;

Start watching for I/O and timer events.

stop

  $watcher->stop;

Stop watching for I/O and timer events.

timer

  my $id = $watcher->timer(3 => sub {...});

Create a new timer, invoking the callback after a given amount of seconds.

SEE ALSO

Mojolicious, Mojolicious::Guides, http://mojolicio.us.