State send interval exported to constants

This commit is contained in:
Uriziel 2013-01-01 13:04:58 +01:00
parent da94607885
commit 6e11d59ddc
2 changed files with 4 additions and 4 deletions

View File

@ -15,7 +15,7 @@ SLOWDOWN_RESET_THRESHOLD = 0.1
DIFFFERENT_DURATION_THRESHOLD = 1
PROTOCOL_TIMEOUT = 5
RECONNECT_RETRIES = 10
SERVER_STATE_INTERVAL = 1
#Usually there's no need to adjust these
COMMANDS_UNDO = ["u", "undo", "revert"]

View File

@ -238,9 +238,9 @@ class Watcher(object):
_, position = self.factory.getRoomPausedAndPosition(self.room)
return position
def scheduleSendState(self, when=1):
def scheduleSendState(self):
self._sendStateTimer = task.LoopingCall(self.sendState)
self._sendStateTimer.start(when, True)
self._sendStateTimer.start(constants.SERVER_STATE_INTERVAL, True)
def sendState(self):
self.factory.sendState(self.watcherProtocol)
@ -248,7 +248,7 @@ class Watcher(object):
def resetStateTimer(self):
if(self._sendStateTimer):
self._sendStateTimer.stop()
self._sendStateTimer.start(1)
self._sendStateTimer.start(constants.SERVER_STATE_INTERVAL)
def deactivate(self):
if(self._sendStateTimer):