summaryrefslogtreecommitdiff
path: root/pkg/priority_queue/queue.go
blob: 88d18acb7d2c3e0bff7476b4d7575173b7f67360 (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() {

}

func (q *QueueImpl) BLPop() {

}