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

NAME

UE - aliased namespace for UniEvent

DESCRIPTION

This module is just a shortcut for UniEvent. E.g. instead of

    my $loop = UniEvent::Loop->new;

it can be written as

    my $loop = UE::Loop->new;

However keep in mind, that created objects are always of UniEvent::XXXX class. It matters in these kind of checks:

    if (ref($t) eq 'UniEvent::Timer') # ok
    if (ref($t) eq 'UE::Timer')       # WRONG!