No specified executor: will use a global IO thread pool
| 58 | struct ARROW_EXPORT IOContext { |
| 59 | // No specified executor: will use a global IO thread pool |
| 60 | IOContext() : IOContext(default_memory_pool(), StopToken::Unstoppable()) {} |
| 61 | |
| 62 | explicit IOContext(StopToken stop_token) |
| 63 | : IOContext(default_memory_pool(), std::move(stop_token)) {} |
nothing calls this directly
no test coverage detected