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

type Queue interface {
	Push(item PQItem)
	Pop() PQItem
}

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