Last active
October 27, 2020 20:17
-
-
Save pedrocganem/f158419256fbe5d5f8db919c26089ba5 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Future<MqttServerClient> brokerSetup(Function function) async { | |
client = MqttServerClient.withPort(broker, clientIdentifier, port); | |
client.logging(on: true); | |
client.onConnected = onConnected; | |
client.onDisconnected = onDisconnected; | |
client.onSubscribed = onSubscribed; | |
client.onSubscribeFail = onSubscribeFail; | |
client.pongCallback = pong; | |
client.secure = false; | |
final connMessage = MqttConnectMessage() | |
.authenticateAs(username, password) | |
.keepAliveFor(60) | |
.startClean() | |
.withWillQos(MqttQos.atLeastOnce) | |
.withClientIdentifier(clientIdentifier); | |
client.connectionMessage = connMessage; | |
try { | |
await client.connect(); | |
} catch (e) { | |
print('Exception: $e'); | |
client.disconnect(); | |
} | |
subscription = client.updates.listen(function); //this will make our widget know when it's time to update! | |
return client; | |
} | |
} | |
//actions | |
void onConnected() { | |
print('connected'); | |
} | |
void onDisconnected() { | |
print('disconnected'); | |
} | |
void onSubscribed(String topic) { | |
print('subscribed to $topic'); | |
} | |
void onSubscribeFail(String topic) { | |
print('failed to subscribe to $topic'); | |
} | |
void on() { | |
print('disconnected'); | |
} | |
void pong() { | |
print('ping response arrived'); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment