start page | rating of books | rating of authors | reviews | copyrights

Perl in a Nutshell

Perl in a NutshellSearch this book
Previous: Reference: remove Chapter 8
Standard Modules
Next: 8.95 IO::Select
 

select

$

s


->select(


read

, 

write

, 

error


[,
 

timeout


])

Static method; call it with the package name like new . read , write , and error are either undef or IO::Select objects. The optional argument timeout has the same effect as for the core select call.

Returns an array of three elements, each a reference to an array, or an empty array on error. The arrays hold the handles that are ready for reading, ready for writing, and have error conditions, respectively.


Previous: Reference: remove Perl in a Nutshell Next: 8.95 IO::Select
Reference: remove Book Index 8.95 IO::Select