NewDelayingQueue constructs a new workqueue with delayed queuing ability
()
| 35 | |
| 36 | // NewDelayingQueue constructs a new workqueue with delayed queuing ability |
| 37 | func NewDelayingQueue() DelayingInterface { |
| 38 | return newDelayingQueue(clock.RealClock{}, "") |
| 39 | } |
| 40 | |
| 41 | func NewNamedDelayingQueue(name string) DelayingInterface { |
| 42 | return newDelayingQueue(clock.RealClock{}, name) |
no test coverage detected