-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqtest.go
44 lines (37 loc) · 841 Bytes
/
qtest.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
package main
import (
"fmt"
"log"
"math/rand"
"time"
"github.com/enriquebris/goconcurrentqueue"
)
func worker(worknumber int, queue *goconcurrentqueue.FIFO) {
for true {
value, err := queue.DequeueOrWaitForNextElement()
if err != nil {
log.Panicf("worker error: %v", err)
}
fmt.Printf("{worker:%v} got value: %v\n", worknumber, value)
}
}
func main() {
r := rand.New(rand.NewSource(time.Now().UnixNano()))
queue := goconcurrentqueue.NewFIFO()
workers := 4
for i := 0; i < workers; i++ {
go worker(i, queue)
}
wait := 2
for true {
n := r.Intn(10) + 1
fmt.Printf("enqueing %v values...\n", n)
for i := 0; i < n; i++ {
v := r.Float64()
fmt.Printf("enqueing {n:%v}: %v\n", n, v)
queue.Enqueue(v)
}
fmt.Printf("waiting %v secs...\n", wait)
time.Sleep(time.Duration(wait) * time.Second)
}
}