| 312 | } |
| 313 | |
| 314 | String takeQueuedCommand() { |
| 315 | String command; |
| 316 | withClientLock([&]() { |
| 317 | command = queuedCommand; |
| 318 | queuedCommand = ""; |
| 319 | }); |
| 320 | return command; |
| 321 | } |
| 322 | |
| 323 | String takeQueuedOutput() { |
| 324 | String output; |
no test coverage detected