Help for this page

Select Code to Download


  1. or download this
    while (my $row = $sth->fetch()) {
        # Must copy since fetch reuses array.
    ...
    
        $q->enqueue(share($row));
    }
    
  2. or download this
    my @queue;
    
    ...
        my $item = shift(@queue);
        ...
    }