BlockingControl interface to control the blocking status
| 34 | |
| 35 | // BlockingControl interface to control the blocking status |
| 36 | type BlockingControl interface { |
| 37 | EnableBlocking(ctx context.Context) |
| 38 | DisableBlocking(ctx context.Context, duration time.Duration, disableGroups []string) error |
| 39 | BlockingStatus() BlockingStatus |
| 40 | } |
| 41 | |
| 42 | // ListRefresher interface to control the list refresh |
| 43 | type ListRefresher interface { |
no outgoing calls
no test coverage detected