| 87 | { |
| 88 | public: |
| 89 | chat_session(tcp::socket socket, chat_room& room) |
| 90 | : socket_(std::move(socket)), |
| 91 | timer_(socket_.get_executor()), |
| 92 | room_(room) |
| 93 | { |
| 94 | timer_.expires_at(std::chrono::steady_clock::time_point::max()); |
| 95 | } |
| 96 | |
| 97 | void start() |
| 98 | { |
nothing calls this directly
no test coverage detected