I try to stop listening in socket.io. For example, in my case, I get the data from a socket like this.
Socket.on('event', function(data) {}}
How can I stop listening in socket.io? Thanks
I try to stop listening in socket.io. For example, in my case, I get the data from a socket like this.
Socket.on('event', function(data) {}}
How can I stop listening in socket.io? Thanks
Share Improve this question asked Jan 21, 2020 at 14:12 Alain RoyAlain Roy 1651 gold badge4 silver badges16 bronze badges 2- I was confronted with a similar problem just like this, and this article was helpful for me. – React Native Developer Commented Feb 25, 2020 at 10:46
- I faced this issue and this article was helpful for me Thanks – ExpertWeblancer Commented Mar 15, 2020 at 4:18
3 Answers
Reset to default 7To unsubscribe all listeners of an event
socket.off('event-name');
To unsubscribe a certain listener
socket.off('event-name', listener);
Or You can use following things also,
socket.removeListener(eventName, listener)
socket.removeAllListeners([eventName])
Ref: https://socket.io/docs/server-api/#socket-removeListener-eventName-listener
To close the connection:
socket.close()
or socket.disconnect()
Returns Socket
Disconnects the socket manually.
To stop listening to some specific listener
socket.off('event', function(){})
Unbind the specified event handler (opposite of .on()).
If you decide to use this method, be careful! socket.off() does not stop the this client-side socket from receiving any server-sent messages, it just prevents the specified event handler from firing.
Actually, a socket instance inherits every method from Emitter
class (https://github./ponent/emitter), so you can use .hasListeners()
, .once()
and already said .off()
(to remove an specific event listener).
Here you find a nice doc about these and other Socket.io methods: https://sailsjs./documentation/reference/web-sockets/socket-client/io-socket-on
The 'off' function can also be used.
socket.off('news'); // stops listening to the "news" event
socket.off('news', myFunction); // useful if you have multiple listeners for the same event socket.off(); // stops listening to all events