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

Class TPingResult

library/cpp/par/par_remote.cpp:43–57  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

41 };
42
43 struct TPingResult {
44 int CompId;
45 float Delay;
46
47 TPingResult()
48 : CompId(-1)
49 , Delay(0)
50 {
51 }
52 TPingResult(int compId, float delay)
53 : CompId(compId)
54 , Delay(delay)
55 {
56 }
57 };
58
59 struct TAllPingResults {
60 TVector<TPingResult> PingResults;

Callers 1

LocalExecMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected