Remove deletes the entry for k. Safe to call repeatedly.
(k Tuple)
| 130 | |
| 131 | // Remove deletes the entry for k. Safe to call repeatedly. |
| 132 | func (t *Table) Remove(k Tuple) { |
| 133 | t.mu.Lock() |
| 134 | defer t.mu.Unlock() |
| 135 | delete(t.m, k) |
| 136 | } |
| 137 | |
| 138 | // Len returns the current connection count (for metrics/telemetry). |
| 139 | func (t *Table) Len() int { |
no outgoing calls