MCPcopy Create free account
hub / github.com/ClickHouse/ClickHouse / nextPart

Method nextPart

base/poco/Net/src/MultipartWriter.cpp:52–61  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

50
51
52void MultipartWriter::nextPart(const MessageHeader& header)
53{
54 if (_firstPart)
55 _firstPart = false;
56 else
57 _ostr << "\r\n";
58 _ostr << "--" << _boundary << "\r\n";
59 header.write(_ostr);
60 _ostr << "\r\n";
61}
62
63
64void MultipartWriter::close()

Callers 2

readMultipartMethod · 0.45
writeMultipartMethod · 0.45

Calls 1

writeMethod · 0.45

Tested by

no test coverage detected