ConnectionState
ConnectionState =
"disconnected"|"connecting"|"connected"|"disconnecting"
Defined in: src/io/broker/BrokerActor.ts:30
Connection-lifecycle state machine. Transitions are linear: disconnected → connecting → connected → disconnecting → disconnected
Reconnect after failure goes connected → disconnected → connecting → …
with backoff between attempts. Aktor-Stop terminates from any state
via disconnecting → disconnected.