summaryrefslogtreecommitdiff
path: root/pkg/priority_queue/queue.go
blob: 79afab18cd50a14a3c3e3d9fee57e33296ad01c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package priorityqueue

type QueueImpl struct {
}

func NewPriorityQueue() *QueueImpl {
	return nil
}

// Push the task
func (q *QueueImpl) Push() {

}

func (q *QueueImpl) Pop() interface{} {
	return nil
}

func (q *QueueImpl) BLPop() {

}