summaryrefslogtreecommitdiff
path: root/pkg/priority_queue/interface.go
blob: 3cc1d575ce3bdadc15c5729aa4376a320d5c91c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
package priorityqueue

type Queue interface {
	Insert(item PQItem)
	GetMax() PQItem
}

type PQItem interface {
	ID() string
	Priority() uint64
}