summary refs log tree commit diff
path: root/synapse/streams
diff options
context:
space:
mode:
authorPaul "LeoNerd" Evans <paul@matrix.org>2014-08-29 17:39:33 +0100
committerPaul "LeoNerd" Evans <paul@matrix.org>2014-08-29 17:39:33 +0100
commit6dd50da54ea944610eb3836621c45a2d6b2a532b (patch)
tree9ba22386eb6b5bd82d16240095d2913424d9e4ca /synapse/streams
parentAvoid hardcoding names of individual stream token keys in its own implementat... (diff)
downloadsynapse-6dd50da54ea944610eb3836621c45a2d6b2a532b.tar.xz
Define a new event stream data source for typing notifications (currently null)
Diffstat (limited to 'synapse/streams')
-rw-r--r--synapse/streams/events.py20
1 files changed, 13 insertions, 7 deletions
diff --git a/synapse/streams/events.py b/synapse/streams/events.py
index 321faf4b03..4bec6605bd 100644
--- a/synapse/streams/events.py
+++ b/synapse/streams/events.py
@@ -19,6 +19,7 @@ from synapse.types import StreamToken
 
 from synapse.handlers.presence import PresenceEventSource
 from synapse.handlers.room import RoomEventSource
+from synapse.handlers.typing import TypingNotificationEventSource
 
 
 class NullSource(object):
@@ -41,6 +42,7 @@ class EventSources(object):
     SOURCE_TYPES = {
         "room": RoomEventSource,
         "presence": PresenceEventSource,
+        "typing": TypingNotificationEventSource,
     }
 
     def __init__(self, hs):
@@ -49,15 +51,19 @@ class EventSources(object):
             for name, cls in EventSources.SOURCE_TYPES.items()
         }
 
-    @staticmethod
-    def create_token(events_key, presence_key):
-        return StreamToken(events_key=events_key, presence_key=presence_key)
-
     @defer.inlineCallbacks
     def get_current_token(self):
-        events_key = yield self.sources["room"].get_current_token_part()
-        presence_key = yield self.sources["presence"].get_current_token_part()
-        token = EventSources.create_token(events_key, presence_key)
+        token = StreamToken(
+            events_key=(
+                yield self.sources["room"].get_current_token_part()
+            ),
+            presence_key=(
+                yield self.sources["presence"].get_current_token_part()
+            ),
+            typing_key=(
+                yield self.sources["typing"].get_current_token_part()
+            )
+        )
         defer.returnValue(token)