1POE::Loop::IO_Poll(3) User Contributed Perl DocumentationPOE::Loop::IO_Poll(3)
2
3
4
5sub skip_tests {
6 return "IO::Poll is not 100% compatible with $^O" if (
7 $^O eq "MSWin32" and not $ENV{POE_DANTIC}
8 );
9 return "IO::Poll tests require the IO::Poll module" if (
10 do { eval "use IO::Poll"; $@ }
11 ); }
12
14 POE::Loop::IO_Poll - a bridge that allows POE to be driven by IO::Poll
15
17 See POE::Loop.
18
20 POE::Loop::IO_Poll implements the interface documented in POE::Loop.
21 Therefore it has no documentation of its own. Please see POE::Loop for
22 more details.
23
25 POE, POE::Loop, IO::Poll, POE::Loop::PerlSignals
26
28 Please see POE for more information about authors, contributors, and
29 POE's licensing.
30
31
32
33perl v5.32.1 2021-01-27 POE::Loop::IO_Poll(3)