Help for this page

Select Code to Download


  1. or download this
    my $w; $w = AnyEvent->timer(
    
  2. or download this
    $w_cond->send();
    
  3. or download this
    $w->recv; # enters "main loop" till $condvar gets ->send
    
  4. or download this
    my $w; $w = AnyEvent->timer(
        after => 0,
    ...
            $w_cond->send();
        }
    );