Sfoglia il codice sorgente

gently close the connection before leaving the page

release/3.x.x
Jan Eggers 7 anni fa
parent
commit
0e0fcabc04
1 ha cambiato i file con 5 aggiunte e 1 eliminazioni
  1. +5
    -1
      Tests/MQTTnet.TestApp.AspNetCore2/wwwroot/app/app.ts

+ 5
- 1
Tests/MQTTnet.TestApp.AspNetCore2/wwwroot/app/app.ts Vedi File

@@ -13,4 +13,8 @@ client.on('connect', () => {
client.on('message', (topic, message) => {
// message is Buffer
console.log(message.toString());
})
});

window.onbeforeunload = () => {
client.end();
};

Caricamento…
Annulla
Salva