Add a run_on_reactor function

This commit is contained in:
Erik Johnston 2014-10-29 17:02:22 +00:00
parent e7858b6d7e
commit 53216a500d

View file

@ -21,3 +21,10 @@ def sleep(seconds):
d = defer.Deferred()
reactor.callLater(seconds, d.callback, seconds)
return d
def run_on_reactor():
""" This will cause the rest of the function to be invoked upon the next
iteration of the main loop
"""
return sleep(0)