|
- package md
-
- type MqQueue struct {
- ExchangeName string `json:"exchangeName"` //交换机名字
- Name string `json:"name"` //队列名字
- Type string `json:"type"` //队列类型
- IsPersistent bool `json:"is_persistent"` //队列是否持久化
- RoutKey string `json:"rout_key"` //路由
- BindKey string `json:"bind_key"` //绑定的路由
- ConsumeFunName string `json:"consume_fun_name"` //消费方法
- }
-
- var RabbitMqQueueKeyList = []*MqQueue{
- {
- ExchangeName: "zhios.app.ad.original.data.exchange",
- Name: "ad_original_data_application",
- Type: DirectQueueType,
- IsPersistent: false,
- RoutKey: "ad_original_data_application",
- BindKey: "",
- ConsumeFunName: "AdOriginalDataApplication",
- },
- }
-
- const (
- AdOriginalDataApplication = "AdOriginalDataApplication"
- )
|