Help for this page
use sshConnector; ... $thr2->join(); print "Second thread over\n";
my $machine1 :shared = new Connector($deviceInfo1); my $thr1 = threads->create('methodA',$machine1,10); my $machine2 :shared = new Connector($deviceInfo2); my $thr2 = threads->create('methodB',$machine2,6);