Beefy Boxes and Bandwidth Generously Provided by pair Networks
Come for the quick hacks, stay for the epiphanies.
 
PerlMonks  

Re: How to get Blessed variables of a Class in the Thread Function in Perl?

by NetWallah (Canon)
on Jan 10, 2013 at 06:47 UTC ( [id://1012599]=note: print w/replies, xml ) Need Help??


in reply to How to get Blessed variables of a Class in the Thread Function in Perl?

That is because you neglected to pass $self as a parameter to the threaded call to threadFunc.

Try:

my $tid = threads->new(\&threadFunc , $self); # Syntax: $thr = threads +->create(FUNCTION, ARGS)

             "By three methods we may learn wisdom: First, by reflection, which is noblest; Second, by imitation, which is easiest; and third by experience, which is the bitterest."           -Confucius

  • Comment on Re: How to get Blessed variables of a Class in the Thread Function in Perl?
  • Download Code

Replies are listed 'Best First'.
Re^2: How to get Blessed variables of a Class in the Thread Function in Perl?
by PerlRider (Initiate) on Jan 10, 2013 at 08:26 UTC

    Thanks all, I thought as normal member function and henc didnot give $self as an argument. Working fine after passing $self as argument.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1012599]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others imbibing at the Monastery: (5)
As of 2024-04-23 16:46 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found