
POE::XS::Loop::Poll - an XS implementation of POE::Loop, using poll(2).

use POE::Kernel { loop => 'POE::XS::Loop::Poll' };

This class is an implementation of the abstract POE::Loop interface written in C using the poll(2) system call.
Signals are left to POE::Loop::PerlSignals.

POE, POE::Kernel, POE::Loop.

Relies upon small fd numbers, but then a lot of code does.
Will fail badly if your code uses POE from more than one Perl thread.
poll() on OS X doesn't support ptys, hence POE::XS::Loop::Poll won't work with ptys on OS X.

POE::XS::Loop::Poll is licensed under the same terms as Perl itself.

Tony Cook <tonyc@cpan.org>
sub skip_tests { $ENV{POE_EVENT_LOOP} = "POE::XS::Loop::Poll"; $ENV{POE_LOOP_USES_POLL} = 1; return; }