MCPcopy Create free account
hub / github.com/acl-dev/acl / del

Method del

app/master/tools/master_dispatch/server/client/ClientManager.cpp:20–31  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

18}
19
20void ClientManager::del(ClientConnection* conn)
21{
22 std::vector<ClientConnection*>::iterator it = conns_.begin();
23 for (; it != conns_.end(); ++it)
24 {
25 if ((*it) == conn)
26 {
27 conns_.erase(it);
28 break;
29 }
30 }
31}
32
33ClientConnection* ClientManager::pop()
34{

Callers 3

runMethod · 0.45
transferMethod · 0.45
timer_callbackMethod · 0.45

Calls 2

beginMethod · 0.80
endMethod · 0.45

Tested by

no test coverage detected