- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for routingKey (0.06 sec)
-
internal/event/target/amqp.go
) // AMQPArgs - AMQP target arguments. type AMQPArgs struct { Enable bool `json:"enable"` URL xnet.URL `json:"url"` Exchange string `json:"exchange"` RoutingKey string `json:"routingKey"` ExchangeType string `json:"exchangeType"` DeliveryMode uint8 `json:"deliveryMode"` Mandatory bool `json:"mandatory"` Immediate bool `json:"immediate"`
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Sep 06 23:06:30 UTC 2024 - 10K bytes - Viewed (0) -
internal/config/notify/legacy.go
Key: target.AmqpURL, Value: cfg.URL.String(), }, config.KV{ Key: target.AmqpExchange, Value: cfg.Exchange, }, config.KV{ Key: target.AmqpRoutingKey, Value: cfg.RoutingKey, }, config.KV{ Key: target.AmqpExchangeType, Value: cfg.ExchangeType, }, config.KV{ Key: target.AmqpDeliveryMode, Value: strconv.Itoa(int(cfg.DeliveryMode)), },
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Mar 19 04:37:54 UTC 2024 - 13.1K bytes - Viewed (0) -
internal/config/notify/parse.go
return nil, err } amqpArgs := target.AMQPArgs{ Enable: enabled, URL: *url, Exchange: env.Get(exchangeEnv, kv.Get(target.AmqpExchange)), RoutingKey: env.Get(routingKeyEnv, kv.Get(target.AmqpRoutingKey)), ExchangeType: env.Get(exchangeTypeEnv, kv.Get(target.AmqpExchangeType)), DeliveryMode: uint8(deliveryMode),
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Sep 06 23:06:30 UTC 2024 - 47K bytes - Viewed (0)