Skip Menu |

This queue is for tickets about the POE CPAN distribution.

Report information
The Basics
Id: 1632
Status: resolved
Priority: 0/
Queue: POE

People
Owner: Nobody in particular
Requestors: RCAPUTO [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



Subject: POE::Loop::* often re-implement the same signal handlers
Most event loops do not have native signal watchers, so we are left to re-implement the same %SIG callbacks in most of the bridges. It would be better if we could plug in the signal handlers separately, perhaps by creating a POE::Loop::PerlSignals which the bridges could then use. package POE::Loop::Whatever; ... package POE::Kernel; use POE::Loop::PerlSignals; ...