MCPcopy Create free account
hub / github.com/apple/foundationdb / send

Method send

fdbclient/FluentDSampleIngestor.cpp:75–79  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

73 }
74
75 void send(boost::asio::ip::tcp::socket& socket, std::shared_ptr<Buf> const& buf) {
76 boost::system::error_code ec;
77 socket.send(boost::asio::const_buffer(buf->data, buf->size), 0, ec);
78 this->sendCompletionHandler(ec);
79 }
80 void send(boost::asio::ip::udp::socket& socket, std::shared_ptr<Buf> const& buf) {
81 boost::system::error_code ec;
82 socket.send(boost::asio::const_buffer(buf->data, buf->size), 0, ec);

Callers 15

actionMethod · 0.45
Future<Void> tssLoggerFunction · 0.45
getWatchFutureFunction · 0.45
getRangeFinishedFunction · 0.45
getRangeFunction · 0.45
setDoneMethod · 0.45

Calls 1

sendCompletionHandlerMethod · 0.95

Tested by

no test coverage detected