Keys returns the deduplicated and sorted keys that this MultiLocker manages.
()
| 297 | |
| 298 | // Keys returns the deduplicated and sorted keys that this MultiLocker manages. |
| 299 | func (m *MultiLocker) Keys() []string { |
| 300 | return m.keys |
| 301 | } |
| 302 | |
| 303 | func sleepWithJitter(ctx context.Context, deadline time.Time) error { |
| 304 | remaining := time.Until(deadline) |
no outgoing calls