mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-02 09:46:07 -04:00
Improve code documentation for the typing stream over replication. (#12211)
This commit is contained in:
parent
735e89bd3a
commit
4a53f35737
5 changed files with 20 additions and 6 deletions
|
@ -709,7 +709,7 @@ class ReplicationCommandHandler:
|
|||
self.send_command(RemoteServerUpCommand(server))
|
||||
|
||||
def stream_update(self, stream_name: str, token: Optional[int], data: Any) -> None:
|
||||
"""Called when a new update is available to stream to clients.
|
||||
"""Called when a new update is available to stream to Redis subscribers.
|
||||
|
||||
We need to check if the client is interested in the stream or not
|
||||
"""
|
||||
|
|
|
@ -67,8 +67,8 @@ class ReplicationStreamProtocolFactory(ServerFactory):
|
|||
class ReplicationStreamer:
|
||||
"""Handles replication connections.
|
||||
|
||||
This needs to be poked when new replication data may be available. When new
|
||||
data is available it will propagate to all connected clients.
|
||||
This needs to be poked when new replication data may be available.
|
||||
When new data is available it will propagate to all Redis subscribers.
|
||||
"""
|
||||
|
||||
def __init__(self, hs: "HomeServer"):
|
||||
|
@ -109,7 +109,7 @@ class ReplicationStreamer:
|
|||
|
||||
def on_notifier_poke(self) -> None:
|
||||
"""Checks if there is actually any new data and sends it to the
|
||||
connections if there are.
|
||||
Redis subscribers if there are.
|
||||
|
||||
This should get called each time new data is available, even if it
|
||||
is currently being executed, so that nothing gets missed
|
||||
|
|
|
@ -316,7 +316,19 @@ class PresenceFederationStream(Stream):
|
|||
class TypingStream(Stream):
|
||||
@attr.s(slots=True, frozen=True, auto_attribs=True)
|
||||
class TypingStreamRow:
|
||||
"""
|
||||
An entry in the typing stream.
|
||||
Describes all the users that are 'typing' right now in one room.
|
||||
|
||||
When a user stops typing, it will be streamed as a new update with that
|
||||
user absent; you can think of the `user_ids` list as overwriting the
|
||||
entire list that was there previously.
|
||||
"""
|
||||
|
||||
# The room that this update is for.
|
||||
room_id: str
|
||||
|
||||
# All the users that are 'typing' right now in the specified room.
|
||||
user_ids: List[str]
|
||||
|
||||
NAME = "typing"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue