tags:

views:

68

answers:

2

I want to schedule a task to run in the next iteration of the reactor loop. What's the best way to do it?

reactor.callLater(0, ...)?

+1  A: 

You are correct:

reactor.callLater(0, ...)
Jon-Eric
A: 

From the docs, the correct way seems to be as you said, reactor.callLater(0, ...).

Claudiu