| 213 | } |
| 214 | |
| 215 | CommandEncoder::~CommandEncoder() { |
| 216 | synchronize(); |
| 217 | worker_->stop(); |
| 218 | } |
| 219 | |
| 220 | void CommandEncoder::add_completed_handler(std::function<void()> task) { |
| 221 | worker_->add_task(std::move(task)); |
nothing calls this directly
no test coverage detected