keep alive message for websocket

pull/43/head
Alexander Bentkamp 2 years ago
parent 2efdfe3d07
commit 5fa49551ee

@ -31,7 +31,13 @@ export class Connection {
if (!leanClient.isStarted()) {
leanClient.start()
}
leanClient.restarted(() => { resolve(leanClient) })
leanClient.restarted(() => {
// This keep alive message is not recognized by the server,
// but it makes sure that the websocket connection does not
// time out after 60 seconds.
setInterval(() => {leanClient.sendNotification('$/keepAlive', {}) }, 5000)
resolve(leanClient)
})
}
})
}

Loading…
Cancel
Save