| 35 | } // namespace |
| 36 | |
| 37 | HostStream::HostStream(size_t stack_size_in_bytes) |
| 38 | : thread_(port::Env::Default()->StartThread( |
| 39 | GetThreadOptions(stack_size_in_bytes), "host_executor", |
| 40 | [this]() { WorkLoop(); })) {} |
| 41 | |
| 42 | HostStream::~HostStream() { |
| 43 | { |
nothing calls this directly
no test coverage detected