-
Notifications
You must be signed in to change notification settings - Fork 18
/
publisher_test.go
64 lines (50 loc) · 1.14 KB
/
publisher_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
package amqpextra_test
import (
"context"
"log"
"time"
"github.com/makasim/amqpextra"
"github.com/makasim/amqpextra/publisher"
amqp "github.com/rabbitmq/amqp091-go"
)
func ExampleDialer_Publisher() {
// open connection
d, _ := amqpextra.NewDialer(amqpextra.WithURL("amqp://guest:guest@localhost:5672/%2f"))
// create publisher
p, _ := d.Publisher()
ctx, cancelFunc := context.WithTimeout(context.Background(), time.Millisecond*100)
defer cancelFunc()
// publish a message
p.Publish(publisher.Message{
Key: "test_queue",
Context: ctx,
Publishing: amqp.Publishing{
Body: []byte(`{"foo": "fooVal"}`),
},
})
// close publisher
p.Close()
// close connection
d.Close()
// Output:
}
func ExampleNewPublisher() {
// you can get readyCh from dialer.ConnectionCh() method
var connCh chan *amqpextra.Connection
// create publisher
p, err := amqpextra.NewPublisher(connCh)
if err != nil {
log.Fatal(err)
}
// publish a message
go p.Publish(publisher.Message{
Key: "test_queue",
Publishing: amqp.Publishing{
Body: []byte(`{"foo": "fooVal"}`),
},
})
// close publisher
p.Close()
<-p.NotifyClosed()
// Output:
}