When using select for multiple filehanes, we are warned to
always use sysread. I feel the need to write a nice interface (a bit more advanced than IO::Select) that lets
me say:
$/ = "something special, perhaps";
my $selector = new SuperSelect;
$selector->add_reader($fh1, sub {print "fh1: @_\n"});
$selector->add_reader($fh2, sub {print "fh2: @_\n"});
$selector->wait(3600); # 1 hour
But this seems so useful, I'm sure it must already exist
somewhere. I've tried looking at CPAN; and all the IO::Select type things; and they don't seem to help.
Does this exist anywhere? If not, is there a good reason (a hidden gotcha) why its not been written? Should I forget about it and simply use multiple threads in 5.8?
Thanks, --Dave.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.