Skip to content
Snippets Groups Projects
Commit dbf87282 authored by Erik Johnston's avatar Erik Johnston
Browse files

Docs

parent b5cb6347
No related branches found
No related tags found
No related merge requests found
...@@ -137,9 +137,13 @@ class SynchrotronPresence(object): ...@@ -137,9 +137,13 @@ class SynchrotronPresence(object):
def mark_as_coming_online(self, user_id): def mark_as_coming_online(self, user_id):
"""A user has started syncing. Send a UserSync to the master, unless they """A user has started syncing. Send a UserSync to the master, unless they
had recently stopped syncing. had recently stopped syncing.
Args:
user_id (str)
""" """
going_offline = self.users_going_offline.pop(user_id, None) going_offline = self.users_going_offline.pop(user_id, None)
if not going_offline: if not going_offline:
# Safe to skip if we haven't yet told the master they were offline
self.send_user_sync(user_id, True, self.clock.time_msec()) self.send_user_sync(user_id, True, self.clock.time_msec())
def mark_as_going_offline(self, user_id): def mark_as_going_offline(self, user_id):
...@@ -147,6 +151,9 @@ class SynchrotronPresence(object): ...@@ -147,6 +151,9 @@ class SynchrotronPresence(object):
its likely they'll come back soon. This allows us to avoid sending its likely they'll come back soon. This allows us to avoid sending
a stopped syncing immediately followed by a started syncing notification a stopped syncing immediately followed by a started syncing notification
to the master to the master
Args:
user_id (str)
""" """
self.users_going_offline[user_id] = self.clock.time_msec() self.users_going_offline[user_id] = self.clock.time_msec()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment