public static final int ALIVETIME = 600000; public static final String QUEUE = "hnyz_gs_queue"; @Beanpublic Queue cretaeQueue(){ // return new Queue(QUEUE,true); Map<String, Object> argMap = new HashMap<>(); // 设置消息存活时间 argMap.put(&q…
上一篇我们讲了关于direct类型的Exchange,这一片我们来了解一下fanout类型的Exchange. 1.Exchange的fanout类型 fanout类型的Exchange的特点是会把消息发送给与之绑定的所有Queue中,我们来测试一下.代码如下 using RabbitMQ.Client; using System; using System.Text; using System.Threading; using System.Threading.Tasks; namespace…