Steve Hamblett
Steve Hamblett
You are connecting and sending a connect message which is being rejected by your broker, you need to check your broker logs to find out why. The SecurityContext class is...
OK, your use case here is possible, so do you mean you want a client that given a list of connections(assume all the same for now i.e. ws/wss) it tries...
Its in library scope, sorry if I wasn't clear, but not in the client scope, as in a constructor on MqttClient class, it would be say in some management class...
You don't say what platform you are on, whether you are disconnecting completely when you turn wifi off or are falling back to an alternative such as GSM, You have...
There's no benchmark suite that I know of although other users have run the client at a greater message rate than this, I think one user was up to 5000...
OK, this may be the runtime GC kicking in or trying to kick in, either way the client can't do anything about this. Does it ever recover from the freeze?
The client is just Dart code, it doesn't know where it is running, that being in the VM, a browser or a flutter runtime. If your app is working fine...
The reason that this has not been implemented thus far is that the CBOR spec(RFC's 8949 and 7049) have an expectation that the most efficient form of encoding should be...
Ok you can now do this with floats - ``` final encoded = cbor.encode(CborFloat(0.0)..halfPrecision()); ``` Similar for float and double precision. If the value supplied cannot be represented in the...
Forgot to add, if you dont specify a precision you get current behaviour i.e. best fit.