Skip to content
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

Closed
hunterloftis opened this issue Jan 11, 2012 · 7 comments
Closed

What happens if sockJS gets disconnected? #38

hunterloftis opened this issue Jan 11, 2012 · 7 comments

Comments

@hunterloftis
Copy link

Will it automatically reconnect or should I code some custom reconnect into on('close')?

@majek
Copy link
Member

majek commented Jan 11, 2012

You get the onclose event. Reconnection can't be done automatically by SockJS, so it's your responsibility to handle that accordingly.

@hunterloftis
Copy link
Author

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

@majek
Copy link
Member

majek commented Jan 11, 2012

so would you have to create a new SockJS instance?

yes. it's similar to websockets API

In that case, how do you clean up all the event listeners you made for the old SockJS instance?

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!

@joerussbowman
Copy link

I do just that with onclose, here's a sample of my javascript

$(function() {
    var chat, sockjs, offline_members;
    var sockjs_url = '/chat/sjs/';
    var reconnect = true;

    new_conn = function() {    
        sockjs = new SockJS(sockjs_url);

        sockjs.onmessage = function(e) {
            // chat(JSON.stringify(e.data));
            chat(e.data);
            // chat(e);
    };
        sockjs.onclose = function(e) {
            if (reconnect){ new_conn();}
        };

@majek
Copy link
Member

majek commented Jan 13, 2012

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?

@joerussbowman
Copy link

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.

@knowitnothing
Copy link

I've commited a simple reconnector at https://github.com/knowitnothing/sockjs_reconnect

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants