Write data and update position
| 1394 | |
| 1395 | // Write data and update position |
| 1396 | Status Write(const void* data, int64_t nbytes) { |
| 1397 | RETURN_NOT_OK(sink_->Write(data, nbytes)); |
| 1398 | position_ += nbytes; |
| 1399 | return Status::OK(); |
| 1400 | } |
| 1401 | |
| 1402 | Status WriteEOS() { |
| 1403 | // End of stream marker |
no test coverage detected