NAME
IO::Async::Loop::Uring - Use IO::Async with IO::Uring
VERSION
version 0.002
SYNOPSIS
use IO::Async::Loop::Uring;
my $loop = IO::Async::Loop::Uring->new();
$loop->add( ... );
$loop->add( IO::Async::Signal->new(
name => 'HUP',
on_receipt => sub { ... },
) );
$loop->loop_forever();
DESCRIPTION
This subclass of IO::Async::Loop uses IO::Uring to perform its work.
AUTHOR
Leon Timmermans <fawaka@gmail.com>
COPYRIGHT AND LICENSE
This software is copyright (c) 2026 by Leon Timmermans.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.