| 48 | void onConnected() override { connected = true; } |
| 49 | void onDisconnected() override { disconnected = true; } |
| 50 | void onError(int error, const std::string& category, const std::string& message) override { errors = true; } |
| 51 | |
| 52 | public: |
| 53 | std::atomic<bool> connected{false}; |
nothing calls this directly
no outgoing calls
no test coverage detected