Help for this page

Select Code to Download


  1. or download this
    # simmulate a handful of iterations of sitting in what otherwise would
    + be an infinite loop
    for my $i (0 .. 10)
    {
       ...
    }
    
  2. or download this
    $loop->recurring(1 => sub {
        $self->app->log->debug("Doing periodic useful thing");
    });