Я не знаю, websocket .. Я пытался что-то для переподключения в angular 6, используя websocket stompjs.
connect() {
const socket = new SockJS('http://localhost:..../../ws');
this.stompClient = Stomp.over(socket);
const _this = this;
this.stompClient.connect({}, function(frame) {
_this.setConnected(true);
console.log('Connected: ' + frame);
_this.stompClient.subscribe('/topic/notifications', function(data) {
// some data
_this.checkNotification();
});
});
}
Я не могу выполнить переподключение websocket для connect (), предложите мне лучшеепуть.Спасибо ..