Я использую Angular8. Как включить в этот код keepalive для 10 se c? (Предпочтительны ответы в машинописном тексте).
import {Paho} from 'ng2-mqtt/mqttws31'
constructor(){
this.client = new Paho.MQTT.Client(this.apiurl,this.port,'/ws',this.clientId);
console.log(this.clientId)
this.client.connect({ onSuccess:()=> this.onConnected() });
# restart client
this.client.onConnectionLost = (responseObject: Object) => {
this.client.connect({ onSuccess:()=> this.onConnected() });
};
this.client.onMessageArrived = (message: Paho.MQTT.Message) => {
console.log('Message arrived.');
};
}