AtherEnergy / rumqtt

Pure rust mqtt cilent
The Unlicense
202 stars 71 forks source link

Disconnection while handling last session data shouldn't cause data loss #99

Closed tekjar closed 6 years ago

tekjar commented 6 years ago

handle_reconnection right now removes stuff from queues. Network errors while sending this data might cause data loss. Put this data into a channel and handle that channel's data before handling data from user's channel

tekjar commented 6 years ago

Implemented in #108