| 77 | void Join() { worker_->join(); } |
| 78 | |
| 79 | ~BackgroundReader() { |
| 80 | ABORT_NOT_OK(internal::FileClose(fd_)); |
| 81 | ARROW_CHECK(CloseHandle(event_)); |
| 82 | } |
| 83 | |
| 84 | protected: |
| 85 | explicit BackgroundReader(int fd) : fd_(fd), total_bytes_(0) { |
nothing calls this directly
no test coverage detected