Code Monkey home page Code Monkey logo

Comments (2)

Canato avatar Canato commented on June 10, 2024 1

Ahhh I see!

I was doing

socket = IO.socket(url, options).connect().apply {
    on(Socket.EVENT_CONNECT) {
        Log.i("Canatoxxx", "OPEN: ${Socket.EVENT_CONNECT}")
        trySend(CustomEvent.Connect)
    }
    on(Manager.EVENT_RECONNECT_FAILED) {
        Log.i("Canatoxxx", "OPEN: ${Manager.EVENT_RECONNECT_FAILED}")
        trySend(CustomEvent.ReconnectionFailed)
    }
    (...)
}

And should be

socket = IO.socket(url, options).connect().apply {
    on(Socket.EVENT_CONNECT) {
        Log.i("Canatoxxx", "OPEN: ${Socket.EVENT_CONNECT}")
        trySend(CustomEvent.Connect)
    }
    io().apply {
        on(Manager.EVENT_RECONNECT_FAILED) {
            Log.i("Canatoxxx", "OPEN: ${Manager.EVENT_RECONNECT_FAILED}")
            trySend(CustomEvent.ReconnectionFailed)
        }
    }
    (...)
}

Thanks!

I will do some tests and maybe open a PR with documentation suggestions to make it more clear =D

from socket.io-client-java.

darrachequesne avatar darrachequesne commented on June 10, 2024

Hi! The reconnection events are emitted by the Manager, which can be accessed with socket.io():

socket.io().on(Manager.EVENT_RECONNECT_ATTEMPT, () -> {
  // ...
});

from socket.io-client-java.

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.