| 440 | "_DATASET_GRAPH_OUTPUT_NODE"; |
| 441 | |
| 442 | BackgroundWorker::BackgroundWorker(Env* env, const string& name) { |
| 443 | thread_.reset(env->StartThread({} /* thread_options */, name, |
| 444 | [this]() { WorkerLoop(); })); |
| 445 | } |
| 446 | |
| 447 | BackgroundWorker::~BackgroundWorker() { |
| 448 | { |
nothing calls this directly
no test coverage detected