-
Notifications
You must be signed in to change notification settings - Fork 18
/
consumer_test.go
63 lines (49 loc) · 1.09 KB
/
consumer_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
package amqpextra_test
import (
"context"
"log"
"github.com/makasim/amqpextra"
"github.com/makasim/amqpextra/consumer"
amqp "github.com/rabbitmq/amqp091-go"
)
func ExampleDialer_Consumer() {
// open connection
d, _ := amqpextra.NewDialer(amqpextra.WithURL("amqp://guest:guest@localhost:5672/%2f"))
h := consumer.HandlerFunc(func(ctx context.Context, msg amqp.Delivery) interface{} {
// process message
msg.Ack(false)
return nil
})
c, _ := d.Consumer(
consumer.WithQueue("a_queue"),
consumer.WithHandler(h),
)
// close consumer
c.Close()
// close dialer
d.Close()
// Output:
}
func ExampleNewConsumer() {
// you can get connCh from dialer.ConnectionCh() method
var connCh chan *amqpextra.Connection
h := consumer.HandlerFunc(
func(ctx context.Context, msg amqp.Delivery) interface{} {
// process message
msg.Ack(false)
return nil
})
// create consumer
c, err := amqpextra.NewConsumer(
connCh,
consumer.WithHandler(h),
consumer.WithQueue("a_queue"),
)
if err != nil {
log.Fatal(err)
}
// close consumer
c.Close()
<-c.NotifyClosed()
// Output:
}