mirror of
https://github.com/owncast/owncast.git
synced 2024-11-22 21:03:19 +03:00
28 lines
377 B
TypeScript
28 lines
377 B
TypeScript
const URL = '/api/ping';
|
|
const INTERVAL = 4000;
|
|
|
|
function ping() {
|
|
try {
|
|
fetch(URL);
|
|
} catch (e) {
|
|
console.error(e);
|
|
}
|
|
}
|
|
|
|
class ViewerPing {
|
|
timer: ReturnType<typeof setInterval>;
|
|
|
|
start() {
|
|
this.stop();
|
|
|
|
this.timer = setInterval(() => {
|
|
ping();
|
|
}, INTERVAL);
|
|
}
|
|
|
|
stop() {
|
|
clearInterval(this.timer);
|
|
}
|
|
}
|
|
|
|
export default ViewerPing;
|