MCPcopy Create free account
hub / github.com/antmachineintelligence/mtgbmcode / ~Linkers

Method ~Linkers

src/network/linkers_socket.cpp:68–78  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

66}
67
68Linkers::~Linkers() {
69 if (is_init_) {
70 for (size_t i = 0; i < linkers_.size(); ++i) {
71 if (linkers_[i] != nullptr) {
72 linkers_[i]->Close();
73 }
74 }
75 TcpSocket::Finalize();
76 Log::Info("Finished linking network in %f seconds", network_time_ * 1e-3);
77 }
78}
79
80void Linkers::ParseMachineList(const std::string& machines, const std::string& filename) {
81 std::vector<std::string> lines;

Callers

nothing calls this directly

Calls 2

sizeMethod · 0.45
CloseMethod · 0.45

Tested by

no test coverage detected