最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Is there any way to stop the listening from Socket.io? - Stack Overflow

programmeradmin2浏览0评论

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
Add a ment  | 

3 Answers 3

Reset to default 7

To 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.

  1. socket.off('news'); // stops listening to the "news" event

  2. socket.off('news', myFunction); // useful if you have multiple listeners for the same event socket.off(); // stops listening to all events

发布评论

评论列表(0)

  1. 暂无评论