diff options
author | Erik Johnston <erikj@jki.re> | 2019-03-06 18:59:28 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-06 18:59:28 +0000 |
commit | 0a6e716600e6890c7b2034f1f8d3e53ee6e2a111 (patch) | |
tree | 1ac09ab5547cf00775a601c6d6c784ae12ede75b /synapse/storage/stream.py | |
parent | Merge pull request #4816 from matrix-org/erikj/4422_debug (diff) | |
parent | Newsfile (diff) | |
download | synapse-0a6e716600e6890c7b2034f1f8d3e53ee6e2a111.tar.xz |
Merge pull request #4815 from matrix-org/erikj/docstrings
Add docstrings from matrix-org-hotfixes
Diffstat (limited to 'synapse/storage/stream.py')
-rw-r--r-- | synapse/storage/stream.py | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/synapse/storage/stream.py b/synapse/storage/stream.py index d6cfdba519..580fafeb3a 100644 --- a/synapse/storage/stream.py +++ b/synapse/storage/stream.py @@ -191,6 +191,25 @@ class StreamWorkerStore(EventsWorkerStore, SQLBaseStore): @defer.inlineCallbacks def get_room_events_stream_for_rooms(self, room_ids, from_key, to_key, limit=0, order='DESC'): + """Get new room events in stream ordering since `from_key`. + + Args: + room_id (str) + from_key (str): Token from which no events are returned before + to_key (str): Token from which no events are returned after. (This + is typically the current stream token) + limit (int): Maximum number of events to return + order (str): Either "DESC" or "ASC". Determines which events are + returned when the result is limited. If "DESC" then the most + recent `limit` events are returned, otherwise returns the + oldest `limit` events. + + Returns: + Deferred[dict[str,tuple[list[FrozenEvent], str]]] + A map from room id to a tuple containing: + - list of recent events in the room + - stream ordering key for the start of the chunk of events returned. + """ from_id = RoomStreamToken.parse_stream_token(from_key).stream room_ids = yield self._events_stream_cache.get_entities_changed( |