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

Method GetSend

library/cpp/netliba/v12/ib_cs.cpp:204–212  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

202 return State;
203 }
204 TDeque<TQueuedSend>::iterator GetSend(const TGUID& packetGuid) {
205 for (TDeque<TQueuedSend>::iterator z = SendQueue.begin(); z != SendQueue.end(); ++z) {
206 if (z->PacketGuid == packetGuid) {
207 return z;
208 }
209 }
210 Y_ABORT_UNLESS(0, "no send by guid");
211 return SendQueue.begin();
212 }
213 TDeque<TQueuedSend>::iterator GetSend(TIBMsgHandle msgHandle) {
214 for (TDeque<TQueuedSend>::iterator z = SendQueue.begin(); z != SendQueue.end(); ++z) {
215 if (z->MsgHandle == msgHandle) {

Callers 3

ParsePacketMethod · 0.45
OnCompleteMethod · 0.45
StepMethod · 0.45

Calls 2

beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected