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?

sure you can:
    my $method_ref = $this->can("name_of_method_call");
    
    #...later...
    
    $method_ref->( $this, @args );
  • Comment on Re: Re: How to pass a module method by reference to Thread?