uneeq-js 3.0.16-preview.92 → 3.0.16-preview.94
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/signaling.d.ts
CHANGED
|
@@ -18,18 +18,20 @@ export declare class Signaling {
|
|
|
18
18
|
private readonly maxReconnectAttempts;
|
|
19
19
|
private reconnectionAttempts;
|
|
20
20
|
private allowReconnection;
|
|
21
|
-
private
|
|
21
|
+
private isReconnectInProgress;
|
|
22
22
|
private readonly reconnectionUiContainer;
|
|
23
23
|
constructor(connectionUrl: string, videoContainerElement?: HTMLDivElement | undefined, clientMessages?: Subject<UneeqMessage> | undefined, isStreamTransferring?: boolean);
|
|
24
24
|
init(): void;
|
|
25
|
-
private
|
|
25
|
+
private addStreamHandlers;
|
|
26
|
+
private addWebSocketHandlers;
|
|
26
27
|
private handleWebSocketError;
|
|
27
28
|
private handleVideoInitialized;
|
|
28
29
|
playAudioElement(): void;
|
|
29
30
|
pauseAudioElement(): void;
|
|
30
31
|
private handleDataChannelOpen;
|
|
31
|
-
private
|
|
32
|
+
private handleWebRtcFailed;
|
|
32
33
|
private handleWebRtcDisconnected;
|
|
34
|
+
private reconnectIfSafe;
|
|
33
35
|
private handleDataChannelMessage;
|
|
34
36
|
private handleIndexInQueueMessage;
|
|
35
37
|
private handleRendererTakenMessage;
|