namespace Pole.EventBus.RabbitMQ { /// /// Consumer配置信息 /// public class ConsumerOptions { /// /// 是否自动ack /// public bool AutoAck { get; set; } /// /// 消息处理失败是否重回队列还是不停重发 /// public bool Reenqueue { get; set; } } }