Help for this page

Select Code to Download


  1. or download this
    ~/.cpan/build/AnyEvent-ForkManager-0.04-ZOUXbL$ ./Build test
    t/000_load.t ...... 1/1 # Testing AnyEvent::ForkManager/0.04
    t/000_load.t ...... ok
    t/001_basic.t ..... 1/63
    
  2. or download this
        $pm->start(
            cb => sub {
    ...
            },
            args => [$exit_code]
        );
    
  3. or download this
    my $mpid = $pm->manager_pid;
    isnt $$, $mpid, 'called by child';
    
  4. or download this
    sub new {
        my ($class, $store) = @_;
    ...
    
        bless { store => $store }, $class;
    }
    
  5. or download this
    use Data::Dumper; $Data::Dumper::Deparse = 1; warn Dumper($store);
    
  6. or download this
    use Time::HiRes qw{ usleep }; usleep 200;