Exemplo n.º 1
0
 public QueueConfiguration(GeneralQueueConfiguration cfg)
     : this()
 {
     Durable = cfg.Durable;
     AutoDelete = cfg.AutoDelete;
     Exclusive = cfg.Exclusive;
 }
Exemplo n.º 2
0
 public QueueConfiguration(GeneralQueueConfiguration cfg) : this()
 {
     Durable    = cfg.Durable;
     AutoDelete = cfg.AutoDelete;
     Exclusive  = cfg.Exclusive;
 }
 public IRabbitMqOptionsBuilder WithQueue(GeneralQueueConfiguration queue)
 {
     _options.Queue = queue;
     return(this);
 }