| 224 | } |
| 225 | |
| 226 | Future<std::shared_ptr<io::InputStream>> FileSystem::OpenInputStreamAsync( |
| 227 | const std::string& path) { |
| 228 | return FileSystemDefer( |
| 229 | this, default_async_is_sync_, |
| 230 | [path](std::shared_ptr<FileSystem> self) { return self->OpenInputStream(path); }); |
| 231 | } |
| 232 | |
| 233 | Future<std::shared_ptr<io::InputStream>> FileSystem::OpenInputStreamAsync( |
| 234 | const FileInfo& info) { |