Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for autoDeleted (0.4 sec)

  1. internal/event/target/amqp.go

    	Immediate         bool     `json:"immediate"`
    	Durable           bool     `json:"durable"`
    	Internal          bool     `json:"internal"`
    	NoWait            bool     `json:"noWait"`
    	AutoDeleted       bool     `json:"autoDeleted"`
    	PublisherConfirms bool     `json:"publisherConfirms"`
    	QueueDir          string   `json:"queueDir"`
    	QueueLimit        uint64   `json:"queueLimit"`
    }
    
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sat Oct 07 15:07:38 GMT 2023
    - 10K bytes
    - Viewed (0)
  2. internal/config/notify/legacy.go

    		},
    		config.KV{
    			Key:   target.AmqpNoWait,
    			Value: config.FormatBool(cfg.NoWait),
    		},
    		config.KV{
    			Key:   target.AmqpAutoDeleted,
    			Value: config.FormatBool(cfg.AutoDeleted),
    		},
    		config.KV{
    			Key:   target.AmqpQueueDir,
    			Value: cfg.QueueDir,
    		},
    		config.KV{
    			Key:   target.AmqpQueueLimit,
    			Value: strconv.Itoa(int(cfg.QueueLimit)),
    		},
    	}
    
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Tue Mar 19 04:37:54 GMT 2024
    - 13.1K bytes
    - Viewed (0)
  3. internal/config/notify/parse.go

    			Internal:          env.Get(internalEnv, kv.Get(target.AmqpInternal)) == config.EnableOn,
    			NoWait:            env.Get(noWaitEnv, kv.Get(target.AmqpNoWait)) == config.EnableOn,
    			AutoDeleted:       env.Get(autoDeletedEnv, kv.Get(target.AmqpAutoDeleted)) == config.EnableOn,
    			PublisherConfirms: env.Get(publisherConfirmsEnv, kv.Get(target.AmqpPublisherConfirms)) == config.EnableOn,
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 46.4K bytes
    - Viewed (0)
Back to top