| 116 | bool InputStream::supports_zero_copy() const { return false; } |
| 117 | |
| 118 | Result<std::shared_ptr<const KeyValueMetadata>> InputStream::ReadMetadata() { |
| 119 | return std::shared_ptr<const KeyValueMetadata>{}; |
| 120 | } |
| 121 | |
| 122 | // Default ReadMetadataAsync() implementation: simply issue the read on the context's |
| 123 | // executor |