MCPcopy Create free account
hub / github.com/boostorg/beast / write_some

Method write_some

test/doc/core_4_layers.cpp:229–234  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

227 /// Write some data to the stream
228 template <class ConstBufferSequence>
229 std::size_t write_some(ConstBufferSequence const& buffers)
230 {
231 auto const bytes_transferred = next_layer_.write_some(buffers);
232 bytes_written_ += bytes_transferred;
233 return bytes_transferred;
234 }
235
236 /// Write some data to the stream
237 template <class ConstBufferSequence>

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected