-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathexample_test.go
114 lines (99 loc) · 2.08 KB
/
example_test.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
package rabbitmq
import (
"context"
"fmt"
"time"
"github.com/golang-queue/queue"
"github.com/golang-queue/queue/core"
)
// Direct Exchange
func Example_direct_exchange() {
m := mockMessage{
Message: "foo",
}
w := NewWorker(
WithSubj("direct_queue"),
WithExchangeName("direct_exchange"),
WithRoutingKey("direct_queue"),
WithTag("direct_queue"),
WithRunFunc(func(ctx context.Context, m core.QueuedMessage) error {
fmt.Println("get data:", string(m.Bytes()))
return nil
}),
)
q, err := queue.NewQueue(
queue.WithWorker(w),
queue.WithWorkerCount(1),
)
if err != nil {
w.opts.logger.Error(err)
}
q.Start()
time.Sleep(200 * time.Millisecond)
q.Queue(m)
q.Queue(m)
time.Sleep(200 * time.Millisecond)
q.Release()
// Output:
// get data: foo
// get data: foo
}
// Fanout Exchange
func Example_fanout_exchange() {
m := mockMessage{
Message: "foo",
}
w1 := NewWorker(
WithSubj("fanout_queue_1"),
WithExchangeName("fanout_exchange"),
WithExchangeType("fanout"),
WithRunFunc(func(ctx context.Context, m core.QueuedMessage) error {
fmt.Println("worker01 get data:", string(m.Bytes()))
return nil
}),
)
q1, err := queue.NewQueue(
queue.WithWorker(w1),
)
if err != nil {
w1.opts.logger.Error(err)
}
q1.Start()
time.Sleep(200 * time.Millisecond)
w2 := NewWorker(
WithSubj("fanout_queue_2"),
WithExchangeName("fanout_exchange"),
WithExchangeType("fanout"),
WithRunFunc(func(ctx context.Context, m core.QueuedMessage) error {
fmt.Println("worker02 get data:", string(m.Bytes()))
return nil
}),
)
q2, err := queue.NewQueue(
queue.WithWorker(w2),
)
if err != nil {
w2.opts.logger.Error(err)
}
q2.Start()
time.Sleep(200 * time.Millisecond)
w := NewWorker(
WithExchangeName("fanout_exchange"),
WithExchangeType("fanout"),
)
q, err := queue.NewQueue(
queue.WithWorker(w),
)
if err != nil {
w.opts.logger.Error(err)
}
time.Sleep(200 * time.Millisecond)
q.Queue(m)
time.Sleep(200 * time.Millisecond)
q.Release()
q1.Release()
q2.Release()
// Unordered Output:
// worker01 get data: foo
// worker02 get data: foo
}