NAME

Linux::Event - Front door for the Linux::Event ecosystem

SYNOPSIS

use v5.36;
use Linux::Event;

my $loop = Linux::Event->new( backend => 'epoll' );

$loop->after_ms(100, sub ($loop) {
  say "tick";
  $loop->stop;
});

$loop->run;

DESCRIPTION

Linux::Event is a Linux-focused event loop ecosystem. This distribution currently provides the loop and backend boundary, plus a scheduler.

This is an early development release.

STATUS

EXPERIMENTAL / WORK IN PROGRESS

The API is not yet considered stable and may change without notice. This release is intended for early testing and feedback and is not recommended for production use.

REPOSITORY

The project repository is hosted on GitHub:

https://github.com/haxmeister/perl-linux-event

SEE ALSO

Linux::Event::Loop, Linux::Event::Backend, Linux::Event::Scheduler