IOMux::Poll - simplify use of poll()
IOMux::Poll is a IOMux
use IOMux::Poll; my $mux = IOMux::Poll->new; my $server = IOMux::Service::TCP->new(...); $mux->add($server); $mux->loop;
Multiplexer based on the poll()
system call, defined by POSIX.
The poll
has less administration overhead than the select
call (implemented via IOMux::Select) because it avoids the need to play with bit-vectors to see which file handles got activated. However, poll
is not supported on all platforms.
Extends "DESCRIPTION" in IOMux.
Extends "METHODS" in IOMux.
Extends "Constructors" in IOMux.
Inherited, see "Constructors" in IOMux
Extends "Accessors" in IOMux.
The internal IO::Poll object.
Extends "User interface" in IOMux.
Inherited, see "User interface" in IOMux
Inherited, see "User interface" in IOMux
Inherited, see "User interface" in IOMux
Inherited, see "User interface" in IOMux
Extends "For internal use" in IOMux.
Inherited, see "For internal use" in IOMux
Inherited, see "For internal use" in IOMux
Inherited, see "For internal use" in IOMux
Inherited, see "For internal use" in IOMux
Inherited, see "For internal use" in IOMux
Extends "DETAILS" in IOMux.
Extends "Installation" in IOMux.
Extends "Event managers" in IOMux.
Extends "File handles" in IOMux.
Poll is only available on UNIX. Windows Vista has added a WSAPoll with comparible functionality (probably), but afaik there is no binary wrapper available for perl yet.
This module is part of IOMux distribution version 1.00, built on November 11, 2015. Website: http://perl.overmeer.net/ All modules in this suite: "Any::Daemon", "IOMux", and "IOMux::HTTP".
Please post questions or ideas to perl@overmeer.net
Copyrights 2011-2015 by [Mark Overmeer]. For other contributors see ChangeLog.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See http://www.perl.com/perl/misc/Artistic.html