summaryrefslogtreecommitdiff
path: root/pkg/priority_queue/binary_heap_test.go
diff options
context:
space:
mode:
authorValery Piashchynski <[email protected]>2021-07-11 19:54:35 +0300
committerValery Piashchynski <[email protected]>2021-07-11 19:54:35 +0300
commit0f70f1e2311640236d74a0a237536779d8d44223 (patch)
tree8b2e9dc32b5b6bafe418083c33cce3dbb8f277c7 /pkg/priority_queue/binary_heap_test.go
parent240b114e1ea3c1414bcd9f4d2c050d56c467222f (diff)
Update JOBS interface, Renamed Consume -> Run.
Add DYNAMIC declaration of the pipelines. Update Jobs constructor interface, add FromPipeline method to construct jobs driver (unique) via the `Declare` RPC call. Add `Stop` method to gracefully stop all consumers. Binary heaps `GetMax` to canonical `ExtractMin`. Other small improvements. Signed-off-by: Valery Piashchynski <[email protected]>
Diffstat (limited to 'pkg/priority_queue/binary_heap_test.go')
-rw-r--r--pkg/priority_queue/binary_heap_test.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkg/priority_queue/binary_heap_test.go b/pkg/priority_queue/binary_heap_test.go
index 06d0735c..f30cf8d8 100644
--- a/pkg/priority_queue/binary_heap_test.go
+++ b/pkg/priority_queue/binary_heap_test.go
@@ -50,7 +50,7 @@ func TestBinHeap_Init(t *testing.T) {
res := make([]Item, 0, 12)
for i := 0; i < 11; i++ {
- item := bh.GetMax()
+ item := bh.ExtractMin()
res = append(res, item)
}
@@ -83,7 +83,7 @@ func TestNewPriorityQueue(t *testing.T) {
case <-tt.C:
fmt.Println(fmt.Sprintf("Insert per second: %d", atomic.LoadUint64(&insertsPerSec)))
atomic.StoreUint64(&insertsPerSec, 0)
- fmt.Println(fmt.Sprintf("GetMax per second: %d", atomic.LoadUint64(&getPerSec)))
+ fmt.Println(fmt.Sprintf("ExtractMin per second: %d", atomic.LoadUint64(&getPerSec)))
atomic.StoreUint64(&getPerSec, 0)
case <-stopCh:
tt.Stop()
@@ -98,7 +98,7 @@ func TestNewPriorityQueue(t *testing.T) {
case <-stopCh:
return
default:
- pq.GetMax()
+ pq.ExtractMin()
atomic.AddUint64(&getPerSec, 1)
}
}