I want to schedule a task to run in th开发者_Go百科e next iteration of the reactor loop. What's the best way to do it?
reactor.callLater(0, ...)?
You are correct:
reactor.callLater(0, ...)
From the docs, the correct way seems to be as you said, reactor.callLater(0, ...)
.
精彩评论