| 244 | } |
| 245 | |
| 246 | void BatchHelper::Stop() { |
| 247 | impl_->stop = true; |
| 248 | for (auto &&t : impl_->daemon_threads) { |
| 249 | t->join(); |
| 250 | t.release(); |
| 251 | } |
| 252 | } |
| 253 | |
| 254 | static int DispatchTickRun(void *arg) { |
| 255 | DispatchCtx_t *ctx = static_cast<DispatchCtx_t*>(arg); |
nothing calls this directly
no outgoing calls
no test coverage detected