Skip to content
Merged
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions getstream/video/rtc/connection_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -620,6 +620,17 @@ def ws_client(self):
def ws_client(self, value):
self._ws_client = value

@property
def coordinator_ws(self):
"""The coordinator WebSocket receiving call-scoped events.

Available after connecting. Use ``ws.on()`` or ``ws.on_wildcard()``
to subscribe to events. Send custom events via ``call.send_call_event()``.

Returns None if not connected.
"""
return self._coordinator_ws_client
Comment thread
coderabbitai[bot] marked this conversation as resolved.
Outdated

# Publisher / Subscriber peer-connection shortcuts
@property
def publisher_pc(self):
Expand Down
Loading