| 239 | } |
| 240 | |
| 241 | Future<std::shared_ptr<io::RandomAccessFile>> FileSystem::OpenInputFileAsync( |
| 242 | const std::string& path) { |
| 243 | return FileSystemDefer( |
| 244 | this, default_async_is_sync_, |
| 245 | [path](std::shared_ptr<FileSystem> self) { return self->OpenInputFile(path); }); |
| 246 | } |
| 247 | |
| 248 | Future<std::shared_ptr<io::RandomAccessFile>> FileSystem::OpenInputFileAsync( |
| 249 | const FileInfo& info) { |