summary refs log tree commit diff
diff options
context:
space:
mode:
authorBrendan Abolivier <babolivier@matrix.org>2019-07-26 18:45:31 +0200
committerBrendan Abolivier <babolivier@matrix.org>2019-07-29 11:06:43 +0200
commit8a471557636a188ca7cc4dd92171597b40f5fb92 (patch)
tree3cf4c20dcb1f9dbb7009b8773513028c1f53e8fb
parentMerge pull request #5702 from matrix-org/babolivier/3pid-invite (diff)
downloadsynapse-8a471557636a188ca7cc4dd92171597b40f5fb92.tar.xz
Add ability to pass arguments to looping calls
-rw-r--r--synapse/util/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/synapse/util/__init__.py b/synapse/util/__init__.py

index 0ae7e2ef3b..5277f30d30 100644 --- a/synapse/util/__init__.py +++ b/synapse/util/__init__.py
@@ -58,7 +58,7 @@ class Clock(object): """Returns the current system time in miliseconds since epoch.""" return int(self.time() * 1000) - def looping_call(self, f, msec): + def looping_call(self, f, msec, *args): """Call a function repeatedly. Waits `msec` initially before calling `f` for the first time. @@ -67,7 +67,7 @@ class Clock(object): f(function): The function to call repeatedly. msec(float): How long to wait between calls in milliseconds. """ - call = task.LoopingCall(f) + call = task.LoopingCall(f, *args) call.clock = self._reactor d = call.start(msec / 1000.0, now=False) d.addErrback(