queue

package
v1.2.0-alpha.5 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 15, 2015 License: Apache-2.0 Imports: 4 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type WorkQueue

type WorkQueue interface {
	// GetWork dequeues and returns all ready items.
	GetWork() []types.UID
	// Enqueue inserts a new item or overwrites an existing item with the
	// new timestamp (time.Now() + delay) if it is greater.
	Enqueue(item types.UID, delay time.Duration)
}

WorkQueue allows queueing items with a timestamp. An item is considered ready to process if the timestamp has expired.

func NewBasicWorkQueue

func NewBasicWorkQueue() WorkQueue

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL