MCPcopy Create free account
hub / github.com/catboost/catboost / DoWrite

Method DoWrite

library/cpp/http/io/chunk.cpp:227–233  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

225}
226
227void TChunkedOutput::DoWrite(const void* buf, size_t len) {
228 if (Impl_.Get()) {
229 Impl_->Write(buf, len);
230 } else {
231 ythrow yexception() << "can not write to finished stream";
232 }
233}
234
235void TChunkedOutput::DoFlush() {
236 if (Impl_.Get()) {

Callers

nothing calls this directly

Calls 2

GetMethod · 0.45
WriteMethod · 0.45

Tested by

no test coverage detected