Explorar el Código

gently close the connection before leaving the page

release/3.x.x
Jan Eggers hace 7 años
padre
commit
0e0fcabc04
Se han modificado 1 ficheros con 5 adiciones y 1 borrados
  1. +5
    -1
      Tests/MQTTnet.TestApp.AspNetCore2/wwwroot/app/app.ts

+ 5
- 1
Tests/MQTTnet.TestApp.AspNetCore2/wwwroot/app/app.ts Ver fichero

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

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

Cargando…
Cancelar
Guardar