(name string)
| 39 | } |
| 40 | |
| 41 | func NewNamedDelayingQueue(name string) DelayingInterface { |
| 42 | return newDelayingQueue(clock.RealClock{}, name) |
| 43 | } |
| 44 | |
| 45 | func newDelayingQueue(clock clock.Clock, name string) DelayingInterface { |
| 46 | ret := &delayingType{ |
no test coverage detected