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

Method getTeamID

fdbserver/DataDistributionQueue.actor.cpp:360–367  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

358 }
359
360 std::string getTeamID() const override {
361 std::string id;
362 for (int i = 0; i < teams.size(); i++) {
363 auto const& team = teams[i];
364 id += (i == teams.size() - 1) ? team->getTeamID() : format("%s, ", team->getTeamID().c_str());
365 }
366 return id;
367 }
368};
369
370struct Busyness {

Callers

nothing calls this directly

Calls 3

formatFunction · 0.50
sizeMethod · 0.45
c_strMethod · 0.45

Tested by

no test coverage detected