ClearAllStats clears all stats
()
| 278 | |
| 279 | // ClearAllStats clears all stats |
| 280 | func (st *Tracker) ClearAllStats() { |
| 281 | st.mu.Lock() |
| 282 | defer st.mu.Unlock() |
| 283 | st.stats = make(map[string]*Entry) |
| 284 | } |
| 285 | |
| 286 | // CleanupDeletedEntries removes deleted peers once their remaining delta is fully accounted. |
| 287 | func (st *Tracker) CleanupDeletedEntries() { |
no outgoing calls