| 26 | ) |
| 27 | |
| 28 | type Connection interface { |
| 29 | Increment() |
| 30 | Decrement() |
| 31 | Count() int64 |
| 32 | Reset() |
| 33 | SessionID() int64 |
| 34 | } |
| 35 | |
| 36 | func ResetNodeId(nodeId uint64) { |
| 37 | Connections = newDefaultConnectionServer(nodeId) |
no outgoing calls
no test coverage detected
searching dependent graphs…