@@ -13,6 +13,7 @@ import { User, OwnUser, OtherUser } from "./User";
13
13
import { formatTime } from "@/util/formatTime" ;
14
14
15
15
const SEND_TIME_UPDATE_INTERVAL = 500 ;
16
+ const SEND_HEALTH_CHECK_INTERVAL = 1000 * 60 ; // 60 seconds
16
17
17
18
export class Party extends EventEmitter < PartyEvent > {
18
19
wsUrl : string ;
@@ -23,6 +24,7 @@ export class Party extends EventEmitter<PartyEvent> {
23
24
ownUser ! : OwnUser ;
24
25
showToast : boolean ;
25
26
periodicUpdateIntervalID : number ;
27
+ serverHealthCheckSendIntervalID : number ;
26
28
27
29
constructor (
28
30
wsUrl : string ,
@@ -37,6 +39,7 @@ export class Party extends EventEmitter<PartyEvent> {
37
39
parentCommunicator . setParty ( this ) ;
38
40
this . parentCommunicator = parentCommunicator ;
39
41
this . periodicUpdateIntervalID = - 1 ;
42
+ this . serverHealthCheckSendIntervalID = - 1 ;
40
43
41
44
// cleanup if we lose connection with Websocket server by tab/window/browser closing
42
45
window . addEventListener ( "beforeunload" , event => {
@@ -196,6 +199,7 @@ export class Party extends EventEmitter<PartyEvent> {
196
199
this . socket . onopen = ( ) => {
197
200
this . emit ( PartyEvent . CONNECTED ) ;
198
201
this . socket . onmessage = this . handleMessage . bind ( this ) ;
202
+ this . sendHealthCheckToServer ( ) ;
199
203
} ;
200
204
201
205
this . socket . onclose = ( ) => {
@@ -211,6 +215,19 @@ export class Party extends EventEmitter<PartyEvent> {
211
215
} ;
212
216
}
213
217
218
+ sendHealthCheckToServer ( ) {
219
+ // AWS ALB closes idle connections after 200s (for now)
220
+ // we send health update every minute
221
+ this . serverHealthCheckSendIntervalID = window . setInterval ( async ( ) => {
222
+ this . socket . send (
223
+ JSON . stringify ( {
224
+ type : SocketSendMsgType . HEALTH_CHECK ,
225
+ payload : { }
226
+ } )
227
+ ) ;
228
+ } , SEND_HEALTH_CHECK_INTERVAL ) ;
229
+ }
230
+
214
231
checkIfPeriodicallySendVideoTime ( ) {
215
232
if ( this . periodicUpdateIntervalID === - 1 ) {
216
233
// CHECK IF WE NEED TO START SENDING UPDATES
0 commit comments