Write data and update position
| 1401 | |
| 1402 | // Write data and update position |
| 1403 | Status Write(const void* data, int64_t nbytes) { |
| 1404 | RETURN_NOT_OK(sink_->Write(data, nbytes)); |
| 1405 | position_ += nbytes; |
| 1406 | return Status::OK(); |
| 1407 | } |
| 1408 | |
| 1409 | Status WriteEOS() { |
| 1410 | // End of stream marker |
no test coverage detected