| 51 | } |
| 52 | |
| 53 | void onError(int error, const std::string& category, const std::string& message) override |
| 54 | { |
| 55 | std::cout << "Chat TCP client caught an error with code " << error << " and category '" << category << "': " << message << std::endl; |
| 56 | } |
| 57 | |
| 58 | private: |
| 59 | std::atomic<bool> _stop{false}; |
nothing calls this directly
no outgoing calls
no test coverage detected