-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
What happens if sockJS gets disconnected? #38
Comments
You get the |
Then how should you handle the onclose event to reconnect? I don't see anything in the API docs like a 'connect' method... so would you have to create a new SockJS instance? In that case, how do you clean up all the event listeners you made for the old SockJS instance? Thanks |
yes. it's similar to websockets API
The naive assumption is that once you stop referring to the old sockjs instance it should be garbage collected. If that's not true - file a bug as this would be a memory leak! |
I do just that with onclose, here's a sample of my javascript
|
This is perfectly fine. I would suggest some kind of delay and exponential backoff - you don't want to spin 100% cpu if the network is unavailable, right? |
yea, it's on my todo already to set up exponential backoff, one of the first things I plan on doing after I finish my backend rewrite to use tornado.gen where possible. |
I've commited a simple reconnector at https://github.com/knowitnothing/sockjs_reconnect |
Will it automatically reconnect or should I code some custom reconnect into on('close')?
The text was updated successfully, but these errors were encountered: