Help for this page

Select Code to Download


  1. or download this
    sub what_next {
      my ($kernel, $job) = @_;
    ...
        $kernel->yield( 'process_next_input' );
      }
    }
    
  2. or download this
    sub process_next_input {
      ...;
    ...
    
      what_next($_[KERNEL], $job);
    }