NAME
IOMux::Poll - simplify use of poll()
INHERITANCE
IOMux::Poll
is a IOMux
SYNOPSIS
use IOMux::Poll;
my $mux = IOMux::Poll->new;
my $server = IOMux::Service::TCP->new(...);
$mux->add($server);
$mux->loop;
DESCRIPTION
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.
METHODS
Extends "METHODS" in IOMux.
Constructors
Extends "Constructors" in IOMux.
- IOMux::Poll->new(%options)
-
Inherited, see "Constructors" in IOMux
Accessors
Extends "Accessors" in IOMux.
User interface
Extends "User interface" in IOMux.
- $obj->add($handler|$bundle)
-
Inherited, see "User interface" in IOMux
- $obj->endLoop(BOOLEAN)
-
Inherited, see "User interface" in IOMux
- $obj->loop( [$heartbeat] )
-
Inherited, see "User interface" in IOMux
- $obj->open($mode, $params)
-
Inherited, see "User interface" in IOMux
For internal use
Extends "For internal use" in IOMux.
- $obj->changeTimeout($fileno, $oldtimeout, $newtimeout)
-
Inherited, see "For internal use" in IOMux
- $obj->fdset($fileno, $state, $read, $write, $except)
-
Inherited, see "For internal use" in IOMux
- $obj->handler( $fileno, [$handler] )
-
Inherited, see "For internal use" in IOMux
- $obj->handlers()
-
Inherited, see "For internal use" in IOMux
- $obj->remove($fileno)
-
Inherited, see "For internal use" in IOMux
DETAILS
Extends "DETAILS" in IOMux.
Installation
Extends "Installation" in IOMux.
Event managers
Extends "Event managers" in IOMux.
File handles
Extends "File handles" in IOMux.
Implementation limitations
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.
SEE ALSO
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
LICENSE
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