All returns all keys and their timeouts
()
| 57 | |
| 58 | // All returns all keys and their timeouts |
| 59 | func All() map[string]time.Duration { |
| 60 | out := make(map[string]time.Duration) |
| 61 | mu.RLock() |
| 62 | defer mu.RUnlock() |
| 63 | maps.Copy(out, timeouts) |
| 64 | return out |
| 65 | } |