Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm sort of new to this whole async game (mostly been a Django guy), but I was wondering: how can I pass extra parameters to Tornado's AsyncHTTPClient.fetch callback? For example, I'm tracking the number of times a callback has been called (in order to wait until a certain number have executed before working on the data), and I'd like to do something like:

def getPage(self, items,iteration):
    http = AsyncHTTPClient()    
    http.fetch(feed, callback=self.resp(items,iteration))
def resp(self, response, items, iteration):
    #do stuff
    self.finish()
share|improve this question
Why do you need to track the number of times the callback has been called? – jsalonen May 25 '11 at 8:00

1 Answer

up vote 13 down vote accepted

You need to "bind" your additional arguments. Use functools.partial, like this:

items = ..
iteration = ..
cb = functools.partial(self.resp, items, iteration)

or you could use lambda, like this:

cb = lambda : self.resp(items, iteration)

(you probably need to add the signature to def resp(self, items, iteration, response):)

share|improve this answer
1  
Thanks! This is awesome, and exactly what I was looking for, but I've rewrote the program without async, as I sort of realized it's not necessary for what I'm doing (aggregating data on RSS feeds). Still, I'm sure I'll use this again! – Esten Hurtle May 31 '11 at 3:50
1  
+1, partial is the way to go. – waldecir Sep 21 '11 at 0:55
1  
I was considering a closure, but this seems to be cleaner way. – vartec Nov 26 '12 at 16:32

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.