| 106 | } |
| 107 | |
| 108 | const TIntrusivePtr<IConnection>* FindPtr(const TGUID& guid) const { |
| 109 | return ConnectionHash.FindPtr(guid); |
| 110 | } |
| 111 | const std::pair<iterator, bool> Insert(const TGUID& guid, TConnection* conn) { |
| 112 | const std::pair<iterator, bool>& rv = ConnectionHash.insert(std::make_pair(guid, conn)); |
| 113 | if (!rv.second && rv.first == CachedPos) { |
no outgoing calls
no test coverage detected