Returns a LocalReadFile with io_uring enabled
| 135 | #ifdef IO_URING_SUPPORTED |
| 136 | /// Returns a LocalReadFile with io_uring enabled |
| 137 | virtual std::unique_ptr<ReadFile> openAsyncFileForRead( |
| 138 | std::string_view path, |
| 139 | const FileOptions& options = {}) { |
| 140 | BOLT_UNSUPPORTED("openAsyncFileForRead not implemented"); |
| 141 | } |
| 142 | |
| 143 | /// Returns a LocalWriteFile with io_uring enabled |
| 144 | virtual std::unique_ptr<WriteFile> openAsyncFileForWrite( |
no outgoing calls