Help for this page

Select Code to Download


  1. or download this
    my $rh_set = IO::Select->select($read_set, undef, undef, 0);
    foreach my $rh (@$rh_set) {
    
  2. or download this
    my($rh_set) = IO::Select->select($read_set, undef, undef, 0);
    foreach my $rh (@$rh_set) {
    
  3. or download this
    my @rh_set = $read_set->can_read();
    foreach my $rh (@rh_set) {