Question

I'm trying to adapt some tornado code to work with twisted.

Tornado's IOLoop has a function (add_callback) that will essentially call the function back in the next iteration of the loop. As far as I can tell, twisted doesn't have a direct translation of this. Is there any way to simulate this in twisted?

Was it helpful?

Solution

reactor.callLater(0, x) or reactor.callFromThread(x)

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top