Help for this page

Select Code to Download


  1. or download this
    open(my $pfh, ">&", "STDOUT") or die("$0:ERROR Unable to redirect outp
    +ut to STDOUT. ERR: $?/$!\n");
    
    ...
    
    $fmo->set_mhandle($pfh);
    print Dumper $fmo;
    
  2. or download this
    sub new {
            my $class = shift;
    ...
    
            return $self->{mhandle};
    }
    
  3. or download this
    $VAR1 = {
              'mhandle' => \*{'::$pfh'},
              'waitforchilds' => '180',
              'maxchilds' => '20'
            };
    
  4. or download this
    $VAR1 = bless( {
                     'mhandle' => 'glob(0x2161670)',
    ...
                     'maxchilds' => 20,
                     '_childs' => {}
                   }, 'fmanager' );
    
  5. or download this
    $VAR1 = bless( {
                     'mhandle' => \*{'::$pfh'},
    ...
                     'maxchilds' => 20,
                     '_childs' => {}
                   }, 'fmanager' );