Dreamine.Communication.RabbitMQ 1.0.1
Dreamine.Communication.RabbitMQ 통신 기능과 관련 API를 제공합니다.
로딩중...
검색중...
일치하는것 없음
RabbitMqMessageBusOptions.cs
이 파일의 문서화 페이지로 가기
2
11public sealed class RabbitMqMessageBusOptions
12{
21 public string HostName { get; set; } = "localhost";
22
31 public int Port { get; set; } = 5672;
32
41 public string VirtualHost { get; set; } = "/";
42
51 public string UserName { get; set; } = "guest";
52
61 public string Password { get; set; } = "guest";
62
71 public string ExchangeName { get; set; } = "dreamine.default.exchange";
72
81 public string QueueName { get; set; } = "dreamine.default.queue";
82
91 public string RoutingKey { get; set; } = "dreamine.default.route";
92
101 public string ExchangeType { get; set; } = "direct";
102
111 public bool Durable { get; set; }
112
121 public bool Exclusive { get; set; }
122
131 public bool AutoDelete { get; set; }
132
141 public bool PersistentMessages { get; set; }
142
151 public bool RequeueOnHandlerError { get; set; }
152}