Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for exchangeType (0.23 sec)

  1. internal/event/target/amqp.go

    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"`
    	Durable           bool     `json:"durable"`
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sat Oct 07 15:07:38 GMT 2023
    - 10K bytes
    - Viewed (0)
  2. internal/config/notify/legacy.go

    			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)),
    		},
    		config.KV{
    			Key:   target.AmqpMandatory,
    			Value: config.FormatBool(cfg.Mandatory),
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Tue Mar 19 04:37:54 GMT 2024
    - 13.1K bytes
    - Viewed (0)
  3. internal/config/notify/parse.go

    			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),
    			Mandatory:         env.Get(mandatoryEnv, kv.Get(target.AmqpMandatory)) == config.EnableOn,
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 46.4K bytes
    - Viewed (0)
Back to top