more changes with listeners and having a render test to maek sure that once we have peer connections we don't change it

This commit is contained in:
talksik
2022-05-07 10:26:58 -05:00
parent 45d87c2832
commit f0120b19cf
4 changed files with 96 additions and 21 deletions
+6 -1
View File
@@ -1,3 +1,4 @@
// ! NOTE: these are legacy and too much thinking in the developers head to understand the flow
enum SocketChannels {
SEND_AUDIO_CLIP = "SEND_AUDIO_CLIP",
SEND_USER_STATUS_UPDATE = "SEND_USER_STATUS_UPDATE",
@@ -80,7 +81,11 @@ export class UntuneFromLineRequest {
constructor(public lineId: string) {}
}
export class SomeoneUntunedFromLineResponse {
constructor(public lineId: string, public userId: string) {}
constructor(
public lineId: string,
public userId: string,
public allTunedIntoUserIds: string[]
) {}
}
export class StartBroadcastingRequest {