Beefy Boxes and Bandwidth Generously Provided by pair Networks
Welcome to the Monastery
 
PerlMonks  

Re: Managing capture

by LanX (Saint)
on Feb 19, 2013 at 12:10 UTC ( [id://1019536]=note: print w/replies, xml ) Need Help??


in reply to Managing capture

to answer the question "how do I pass a method as a callback"

doSomething is evidently a method, so it gets my ($self,%args) =@_ in the first line.

Now if you wanna call an anonymous method $args{on_succes}, do something like

$self->$args{on_succes}(ARG_LIST);

Assure that the callback itself takes self again from the args!

 on_success => sub { my ($self,%args); }

Cheers Rolf

UPDATE:

sigh ... there is a parsing problem with $self->$args{on_succes}(ARG_LIST);

You'll need to use a temporary var $code_ref

my $code_ref=$args{on_succes}; $self->$code_ref(ARG_LIST);

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others chilling in the Monastery: (5)
As of 2024-04-25 15:14 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found