MCPcopy
hub / github.com/kubernetes/client-go / NewDelayingQueue

Function NewDelayingQueue

util/workqueue/delaying_queue.go:37–39  ·  view source on GitHub ↗

NewDelayingQueue constructs a new workqueue with delayed queuing ability

()

Source from the content-addressed store, hash-verified

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

Callers 1

NewRateLimitingQueueFunction · 0.85

Calls 1

newDelayingQueueFunction · 0.85

Tested by

no test coverage detected