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

UniEvent::SystemError - system error constants

SYNOPSIS

$tcp->connect_callback(sub {
    my ($tcp, $err) = @_;
    if ($err) {
        if    ($err == UE::SystemError::timed_out) { ... }
        elsif ($err == UE::SystemError::operation_canceled) { ... }
        ...
    }
});

DESCRIPTION

This is alias package for XS::STL::errc, the description of them is partially available on XS::STL::ErrorCode, but full specs belong to C++ domain, hence, are available at cppreference.com.