Help for this page

Select Code to Download


  1. or download this
     my @paramters = ($self);
      my $thread = new Thread \&processJobs, \@paramters;
    
  2. or download this
    sub processJobs
    {
      my $self = shift;
    }
    
  3. or download this
      my $thread = new Thread \&processJobs, $self;
    and in process jobs use like this
    ...
    {
      my $self = $_[0];
    }