in reply to Re: How to pass a module method by reference to Thread?
in thread How to pass a module method by reference to Thread?
my $method_ref = $this->can("name_of_method_call");
#...later...
$method_ref->( $this, @args );
|
|---|