mirror of
https://github.com/element-hq/synapse.git
synced 2024-11-27 12:08:32 +03:00
Add a run_on_reactor function
This commit is contained in:
parent
e7858b6d7e
commit
53216a500d
1 changed files with 7 additions and 0 deletions
|
@ -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)
|
Loading…
Reference in a new issue