| 724 | } |
| 725 | |
| 726 | void RunHandler::Impl::ThreadPoolInterfaceWrapper::Schedule( |
| 727 | std::function<void()> fn) { |
| 728 | return run_handler_impl_->ScheduleIntraOpClosure(std::move(fn)); |
| 729 | } |
| 730 | |
| 731 | RunHandler::Impl::Impl(RunHandlerPool::Impl* pool_impl) |
| 732 | : pool_impl_(pool_impl) { |
nothing calls this directly
no test coverage detected