Git Product home page Git Product logo

Comments (4)

jondubois avatar jondubois commented on September 23, 2024

@facundoolano You could just call socket.connect() instead of socket._tryReconnect().

from socketcluster-client.

facundoolano avatar facundoolano commented on September 23, 2024

But that would attempt reconnection right away wouldn't it? I want it to delay, then try to reconnect, then delay a bit longer, etc...

Now that I think of it, using socket._tryReconnect() after an auth error doesn't really work either; since the error is in the login event and not in the connection, it will always succeed on the first reconnection attempt, so it's effectively the same as wrapping a socket.connect in a setTimeout.

I was hoping to somehow reuse the logic of exponentially increasing delays to retry the login event, but I guess that's not possible.

from socketcluster-client.

jondubois avatar jondubois commented on September 23, 2024

@facundoolano

If you want to leverage SC's autoreconnect, you could pass an error status code to the disconnect method - Some of the status codes are used by SC internally but codes between 4100 and 4500 are free for your own use. So you could go (example): socket.disconnect(4400, 'reason sring or object') - This will cause the client socket to emit an error event but you can handle the error.code (if it's 4400) or just ignore it.

Status codes between 4100 and 4500 basically tell SC that the connection was closed abnormally (due to reasons unknown to SC) and to try to reconnect using exponential backoff - They are 'recoverable' errors.

You can choose your own codes for various errors (Just make sure you stay within that safe range of 4100 to 4500).

from socketcluster-client.

facundoolano avatar facundoolano commented on September 23, 2024

Ok, I'm going to use that for now (it doesn't really do the exponential thing since the connection succeeds and the login fails again, but it's still better than doing a manual timeout).

Closing this.

from socketcluster-client.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.