We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c61c566 commit 5790a03Copy full SHA for 5790a03
README.md
@@ -135,24 +135,6 @@ async def main():
135
print(f"\ttrack id: {publication}")
136
```
137
138
-### Sending and receiving chat
139
-
140
-```python
141
142
-room = rtc.Room()
143
-...
144
145
-chat = rtc.ChatManager(room)
146
147
-# receiving chat
148
-@chat.on("message_received")
149
-def on_message_received(msg: rtc.ChatMessage):
150
- print(f"message received: {msg.participant.identity}: {msg.message}")
151
152
-# sending chat
153
-await chat.send_message("hello world")
154
-```
155
156
### RPC
157
158
Perform your own predefined method calls from one participant to another.
0 commit comments