arduino-mqtt icon indicating copy to clipboard operation
arduino-mqtt copied to clipboard

Chunked Reading and Writing

Open 256dpi opened this issue 6 years ago • 4 comments

There have been various requests for adding a chunked reading and writing API to process messages that are larger than the configured buffer size. This issue is to track the implementation of that.

256dpi avatar Feb 08 '19 08:02 256dpi

Is there a beta library available to test the chunked message functionality?

mih380 avatar Apr 27 '19 04:04 mih380

Not yet, the functionality has not yet been implemented in the underlying lwmqtt library.

256dpi avatar Apr 28 '19 10:04 256dpi

Not yet, the functionality has not yet been implemented in the underlying lwmqtt library.

hi, using the library. It's great, thanks. I see you're also maintaining the underlaying library. When do you forsee that chunking will be implemented?

nickels avatar Mar 21 '20 14:03 nickels

Not yet, the functionality has not yet been implemented in the underlying lwmqtt library.

hi, using the library. It's great, thanks. I see you're also maintaining the underlaying library. When do you forsee that chunking will be implemented?

Was able to fix my issue by increating the buffer like so:

MQTTClient MqttClient = MQTTClient(1024);

nickels avatar Mar 21 '20 14:03 nickels