Beefy Boxes and Bandwidth Generously Provided by pair Networks
The stupid question is the question not asked
 
PerlMonks  

Re: coderef to an object method

by ysth (Canon)
on Jul 21, 2004 at 08:52 UTC ( [id://376181]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    $method = $self->{server}->getcallback("data");
    $self->$method();
    
  2. or download this
    ...setcallback(
       data => $self->can("gotdata"),
       connect => $self->can("connected"),
       disconnect => $self->can("disconnect")
    )
    
  3. or download this
    ...setcallback(
       data => sub { $obj->gotdata },
       ...
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others having an uproarious good time at the Monastery: (2)
As of 2024-04-24 22:50 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found