Beefy Boxes and Bandwidth Generously Provided by pair Networks
XP is just a number
 
PerlMonks  

Re: How To Call An Anonymous Subroutine?

by runrig (Abbot)
on Apr 25, 2012 at 18:07 UTC ( [id://967133]=note: print w/replies, xml ) Need Help??


in reply to How To Call An Anonymous Subroutine?

You invoke an anonymous sub with ->(). Your sub would be invoked with $new_resolvers{"dns-extern"}[0]->($ip_address). The way you have your loop written, you'll have to tell the difference between a scalar and a sub though. You could rewrite the loop as:
print "getting new resolvers for dns server $dns_server\n"; for my $resolver ( @{$new_resolvers{$dns_server}} ) { if (ref $resolver) { print "$_\n" for $resolver->($ip); } else { print "$resolver\n\n"; } } print "\n";
I don't know where $ip is supposed to come from, but that's the way you have your anonymous sub written.

Replies are listed 'Best First'.
Re^2: How To Call An Anonymous Subroutine?
by Plankton (Vicar) on Apr 25, 2012 at 19:31 UTC
    Thank you runrig. that's what I needed!

Log In?
Username:
Password:

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

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

    No recent polls found