| 146 | } |
| 147 | |
| 148 | Result<std::shared_ptr<const KeyValueMetadata>> TransformInputStream::ReadMetadata() { |
| 149 | RETURN_NOT_OK(impl_->CheckClosed()); |
| 150 | |
| 151 | return impl_->wrapped_->ReadMetadata(); |
| 152 | } |
| 153 | |
| 154 | Future<std::shared_ptr<const KeyValueMetadata>> TransformInputStream::ReadMetadataAsync( |
| 155 | const IOContext& io_context) { |
nothing calls this directly
no test coverage detected