Called by the server object to initiate the four actors.
| 157 | |
| 158 | // Called by the server object to initiate the four actors. |
| 159 | void start() |
| 160 | { |
| 161 | channel_.join(shared_from_this()); |
| 162 | |
| 163 | read_line(); |
| 164 | check_deadline(input_deadline_); |
| 165 | |
| 166 | await_output(); |
| 167 | check_deadline(output_deadline_); |
| 168 | } |
| 169 | |
| 170 | private: |
| 171 | void stop() |