in reply to thread on method

You can't derive a coderef to a method because it wouldn't have its invocant. So pass a subref that invokes the method:

#!/usr/bin/perl use strict; use warnings; use threads; use myTest; my @threads; foreach ( 1..2 ) { print "launching job\n"; my $test = myTest->new(); push( @threads , threads->new( sub{ $test->myTestFunc } )); } foreach my $thread ( @threads ) { my @command_output = $thread->join ; print "job done\n"; } __END__ c:\test>t-junk2.pl launching job launching job doing job ... doing job ... job done job done

Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
"Science is about questioning the status quo. Questioning authority".
In the absence of evidence, opinion is indistinguishable from prejudice.
RIP PCW It is as I've been saying!(Audio until 20090817)

Replies are listed 'Best First'.
Re^2: thread on method
by lepetitalbert (Abbot) on Nov 24, 2009 at 10:51 UTC

    Hi BrowserUk,

    Thanks a lot !

    Have a nice day.


    "There is only one good, namely knowledge, and only one evil, namely ignorance." Socrates