Go 集成 RabbitMQ

在 Go 的日常开发工作中,经常使用 RabbitMQ 这个消息中间件,本文是一些使用 Go 开发 RabbitMQ 的日常实践。

本文使用 amqp091-go 这个 Go 库

一、依赖拉取

1
go get github.com/rabbitmq/amqp091-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
115
116
117
118
119
120
121
122
123
124
125
package rabbitmq

import (
"encoding/json"
"github.com/rabbitmq/amqp091-go"
)

// RabbitMQ 对象
type RabbitMQ struct {
channel *amqp091.Channel // 连接通道
Name string // 队列名
exchange string // 队列绑定的交换机名
}

// 新建一个RabbitMQ对象
func New(s string) *RabbitMQ {
conn, err := amqp091.Dial(s)
if err != nil {
panic(err)
}

channel, e := conn.Channel()
if e != nil {
panic(e)
}

// 在通道中声明队列
q, e := channel.QueueDeclare(
"", // name
false, // durable
true, // delete when unused
false, // exclusive
false, // no-wait
nil, // arguments
)

if e != nil {
panic(e)
}

mq := new(RabbitMQ)
mq.channel = channel
mq.Name = q.Name
return mq
}

// 将队列绑定到交换机
func (q *RabbitMQ) Bind(exchange string) {
e := q.channel.QueueBind(
q.Name, // queue name
"", // routing key
exchange, // exchange
false, // no-wait
nil, // arguments
)
if e != nil {
panic(e)
}
// 将队列绑定到的交换机的名称存储到 q.exchange 中
q.exchange = exchange
}

// 直接向指定队列中发送消息
func (q *RabbitMQ) Send(queue string, body interface{}) {
str, e := json.Marshal(body)
if e != nil {
panic(e)
}
e = q.channel.Publish(
"", // exchange
queue,
false,
false,
amqp091.Publishing{
ReplyTo: q.Name,
Body: []byte(str),
})
if e != nil {
panic(e)
}
}

// publish
func (q *RabbitMQ) Publish(exchange string, body interface{}) {
str, e := json.Marshal(body)
if e != nil {
panic(e)
}

e = q.channel.Publish(
exchange,
"", // queue 为空,通过exchange决定发往哪一个queue
false,
false,
amqp091.Publishing{
ReplyTo: q.Name,
Body: []byte(str),
})
if e != nil {
panic(e)
}

}

// 消费队列中的消息,生成一个接收消息的go channel
func (q *RabbitMQ) Consume() <-chan amqp091.Delivery {
c, e := q.channel.Consume(
q.Name,
"",
true,
false,
false,
false,
nil,
)
if e != nil {
panic(e)
}
return c
}

// 关闭连接
func (q *RabbitMQ) Close() {
q.channel.Close()
}

Go 集成 RabbitMQ
https://wuwanhao.github.io/2024/11/05/Go集成RabbitMQ/
作者
Wuuu
发布于
2024年11月5日
许可协议