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.