forked from adjust/rmq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test_consumer.go
49 lines (40 loc) · 864 Bytes
/
test_consumer.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
package rmq
import (
"time"
)
type TestConsumer struct {
name string
AutoAck bool
AutoFinish bool
SleepDuration time.Duration
LastDelivery Delivery
LastDeliveries []Delivery
finish chan int
}
func NewTestConsumer(name string) *TestConsumer {
return &TestConsumer{
name: name,
AutoAck: true,
AutoFinish: true,
finish: make(chan int),
}
}
func (consumer *TestConsumer) String() string {
return consumer.name
}
func (consumer *TestConsumer) Consume(delivery Delivery) {
consumer.LastDelivery = delivery
consumer.LastDeliveries = append(consumer.LastDeliveries, delivery)
if consumer.SleepDuration > 0 {
time.Sleep(consumer.SleepDuration)
}
if consumer.AutoAck {
delivery.Ack()
}
if !consumer.AutoFinish {
<-consumer.finish
}
}
func (consumer *TestConsumer) Finish() {
consumer.finish <- 1
}