| 355 | } |
| 356 | |
| 357 | inline void |
| 358 | Connector::restart(int restart_id) { |
| 359 | |
| 360 | std::string info{""}; |
| 361 | { |
| 362 | std::stringstream ss; |
| 363 | ss << "{"; |
| 364 | ss << "\"restart_id\": " << restart_id << "\n"; |
| 365 | ss << "}"; |
| 366 | info = ss.str(); |
| 367 | } |
| 368 | |
| 369 | marshalling.makeRestart(info); |
| 370 | sendOverSocket(); |
| 371 | } |
| 372 | |
| 373 | inline void |
| 374 | Connector::done() { |
no test coverage detected