You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You can use it to interact with Jellyfish, manage rooms, peers and components
32
+
You can use it to interact with Fishjam, manage rooms, peers and components
33
33
34
34
```python
35
35
# Create a room
@@ -53,9 +53,9 @@ All methods in `RoomApi` may raise one of the exceptions deriving from `jellyfis
53
53
54
54
#### Notifier
55
55
56
-
Notifier allows for receiving real-time updates from the Jellyfish Server.
56
+
Notifier allows for receiving real-time updates from the Fishjam Server.
57
57
58
-
You can read more about notifications in the [Jellyfish Docs](https://jellyfish-dev.github.io/jellyfish-docs/next/getting_started/notifications).
58
+
You can read more about notifications in the [Fishjam Docs](https://fishjam-dev.github.io/fishjam-docs/next/getting_started/notifications).
59
59
60
60
Create `Notifier` instance
61
61
```python
@@ -95,9 +95,9 @@ asyncio.run(test_notifier())
95
95
# Received WebRTC metrics: ServerMessageMetricsReport(metrics='{}')
96
96
```
97
97
98
-
#### Cluster of Jellyfishes
98
+
#### Cluster of Fishjams
99
99
100
-
The cluster of jellyfishes has got embedded load balancer, which means that a new room will be created on jellyfish with the least usage. At the moment to modify this specific room you must communicate with the jellyfish on which this room was created.
100
+
The cluster of fishjams has got embedded load balancer, which means that a new room will be created on fishjam with the least usage. At the moment to modify this specific room you must communicate with the fishjam on which this room was created.
# Create new room api with returned jellyfish address as a room could be
110
-
# created on a different jellyfish instance
111
-
# (if you communicate with a cluster of jellyfishes)
109
+
# Create new room api with returned fishjam address as a room could be
110
+
# created on a different fishjam instance
111
+
# (if you communicate with a cluster of fishjams)
112
112
new_room_api = RoomApi(server_address=address)
113
113
114
-
# Add HLS component with manual subscribe mode, we use here `new_room_api` as we are sure that this API refers to the jellyfish on which this room was created.
114
+
# Add HLS component with manual subscribe mode, we use here `new_room_api` as we are sure that this API refers to the fishjam on which this room was created.
0 commit comments