@100mslive/hms-video-store 0.14.7 → 0.14.8-alpha.0

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.
@@ -9,6 +9,11 @@ export default class HMSSubscribeConnection extends HMSConnection {
9
9
  private readonly remoteStreams;
10
10
  protected readonly observer: ISubscribeConnectionObserver;
11
11
  private readonly MAX_RETRIES;
12
+ /**
13
+ * The SFU answers within a few ms, but a request sent right as the data channel opens has been
14
+ * seen to go unanswered. Without a bound here that caller waits for the rest of the session.
15
+ */
16
+ private readonly RESPONSE_TIMEOUT;
12
17
  readonly nativeConnection: RTCPeerConnection;
13
18
  private pendingMessageQueue;
14
19
  private apiChannel?;