Help for this page

Select Code to Download


  1. or download this
    my $fetch;
    $fetch = sub {
    ...
    # Process two requests at a time
    $fetch->() for 1 .. 2;
    $delay->wait;
    
  2. or download this
    $fetch->();
    $delay->wait;