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;
...