Uh oh!
There was an error while loading. Please reload this page.
feat: add producer connectivity functionality - #286
Conversation
BewareMyPower
left a comment
There was a problem hiding this comment.
is_connected is a wrong legacy design that should not have been added. Actually, it returns false during the reconnection. For example,
- t0: The ownership changed, broker sent a notification to client to disconnect
- t0 + 100 ms: Schedule a new reconnection
- t1: The reconnection was done
is_connected() returns false between [t0, t0 + 100 ms). However, this result is meaningless to users. Users should not do anything for it.
nachatz
commented
Jan 27, 2026
Is there a similar option we would want to add around this functionality? Happy to pickup any other async.io tasks to get as much support added ASAP |
BewareMyPower
commented
Jan 28, 2026
I think we can add it in case existing users might already rely on this API. The goal of the |
Uh oh!
There was an error while loading. Please reload this page.
Motivation
Expanding async producer support. Some functions are simply missing mappings to the async sibling.
Modifications
Adds producer connectivity functionality to the async producer.
Issue
#278