# IO::Select.pm # # Copyright (c) 1995 Graham Barr. All rights reserved. This program is free # software; you can redistribute it and/or modify it under the same terms # as Perl itself. package IO::Select; =head1 NAME IO::Select - OO interface to the select system call =head1 SYNOPSIS use IO::Select; $s = IO::Select->new(); $s->add(\*STDIN); $s->add($some_handle); @ready = $s->can_read($timeout); @ready = IO::Select->new(@handles)->read(0); =head1 DESCRIPTION The C package implements an object approach to the system C static method. =item bits() Return the bit string suitable as argument to the core select() call. =item bits() Return the bit string suitable as argument to the core select() call. =item select ( READ, WRITE, ERROR [, TIMEOUT ] ) C