(itemId uint64)
| 74 | } |
| 75 | |
| 76 | func (this *List) Remove(itemId uint64) { |
| 77 | this.mu.Lock() |
| 78 | defer this.mu.Unlock() |
| 79 | this.removeItem(itemId) |
| 80 | } |
| 81 | |
| 82 | func (this *List) ExpiresAt(itemId uint64) int64 { |
| 83 | this.mu.RLock() |
nothing calls this directly
no test coverage detected