Code Monkey home page Code Monkey logo

Comments (5)

shamblett avatar shamblett commented on August 30, 2024 1

Yes OK I'll update the client to add one.

As a thought, the client maintains a list of subscriptions, would an option to automatically re-subscribe to these on re-connection be useful?

from mqtt_client.

shamblett avatar shamblett commented on August 30, 2024 1

The client automatically tries to reconnect if the initial connection attempt fails, at the moment this is hard wired to 3 attempts in total, you can see this if you edit the mqtt_client.dart in the examples folder to connect to a non-existent broker and turn logging on

from mqtt_client.

drost avatar drost commented on August 30, 2024

On that note, how is reconnection supposed to work? If there is an error during the initial connect, I can't see that a reconnection attempt will be made.

from mqtt_client.

elementzonline avatar elementzonline commented on August 30, 2024

I solved this issue for now by using a 5 second one shot timer to call _connect when the timer expires in the _onDisconnect

void _onDisconnected() {
client.disconnect();
Timer(Duration(seconds: 5), _reconnect);
}

void _reconnect() {
print('MQTT client reconnecting');
_connect();
}

from mqtt_client.

shamblett avatar shamblett commented on August 30, 2024

OnConnect callback added, client re-published at 5.0.0.

from mqtt_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.