• RabbitMQ 几种工作模式---(六)Publisher Confirms(发布者确认)


    发布者确认

    发布者确认 是RabbitMQ扩展,可以实现可靠的发布。在通道上启用发布者确认后,代理将异步确认客户端发布的消息,这意味着它们已在服务器端处理。

    生产者:

    package com..confirm;
    
    
    import com..utils.RabbitConstant;
    import com..utils.RabbitUtils;
    import com.rabbitmq.client.*;
    
    import java.io.IOException;
    import java.util.Iterator;
    import java.util.LinkedHashMap;
    import java.util.Map;
    import java.util.concurrent.TimeoutException;
    
    public class WeatherBureau {
        public static void main(String[] args) throws IOException, TimeoutException {
            Map area = new LinkedHashMap<String, String>();
            area.put("china.hunan.changsha.20201127", "中国湖南长沙20201127天气数据");
            area.put("china.hubei.wuhan.20201127", "中国湖北武汉20201127天气数据");
            area.put("china.hunan.changsha.20201127", "中国湖南长沙20201127天气数据");
            area.put("us.cal.lsj.20201127", "美国加州洛杉矶20201127天气数据");
    
            area.put("china.hebei.shijiazhuang.20201128", "中国河北石家庄20201128天气数据");
            area.put("china.hubei.wuhan.20201128", "中国湖北武汉20201128天气数据");
            area.put("china.henan.zhengzhou.20201128", "中国河南郑州20201128天气数据");
            area.put("us.cal.lsj.20201128", "美国加州洛杉矶20201128天气数据");
    
            Connection connection = RabbitUtils.getConnection();
            Channel channel = connection.createChannel();
            //开启confirm监听模式
            channel.confirmSelect();
            channel.addConfirmListener(new ConfirmListener() {
                public void handleAck(long l, boolean b) throws IOException {
                    //第二个参数代表接收的数据是否为批量接收,一般我们用不到。
                    System.out.println("消息已被Broker接收,Tag:" + l +" b:"+b);
                }
    
                public void handleNack(long l, boolean b) throws IOException {
                    System.out.println("消息已被Broker拒收,Tag:" + l);
                }
            });
            channel.addReturnListener(new ReturnCallback() {
                public void handle(Return r) {
                    System.err.println("===========================");
                    System.err.println("Return编码:" + r.getReplyCode() + "-Return描述:" + r.getReplyText());
                    System.err.println("交换机:" + r.getExchange() + "-路由key:" + r.getRoutingKey() );
                    System.err.println("Return主题:" + new String(r.getBody()));
                    System.err.println("===========================");
                }
            });
            Iterator<Map.Entry<String, String>> itr = area.entrySet().iterator();
            while (itr.hasNext()) {
                Map.Entry<String, String> me = itr.next();
                //Routing key 第二个参数相当于数据筛选的条件
                //第三个参数为:mandatory true代表如果消息无法正常投递则return回生产者,如果false,则直接将消息放弃。
                channel.basicPublish(RabbitConstant.EXCHANGE_WEATHER_TOPIC,me.getKey() ,true, null , me.getValue().getBytes());
            }
    
            /*channel.close();
            connection.close();*/
        }
    }

    后台打印信息:

    消费者1(百度):

    package com..confirm;
    
    
    import com..utils.RabbitConstant;
    import com..utils.RabbitUtils;
    import com.rabbitmq.client.*;
    
    import java.io.IOException;
    
    public class Baidu {
        public static void main(String[] args) throws IOException {
            Connection connection = RabbitUtils.getConnection();
            final Channel channel = connection.createChannel();
            channel.queueDeclare(RabbitConstant.QUEUE_BAIDU, false, false, false, null);
            //queueBind用于将队列与交换机绑定
            //参数1:队列名 参数2:交互机名  参数三:路由key
            channel.queueBind(RabbitConstant.QUEUE_BAIDU, RabbitConstant.EXCHANGE_WEATHER_TOPIC, "*.*.*.20201127");
    //        channel.queueUnbind(RabbitConstant.QUEUE_BAIDU, RabbitConstant.EXCHANGE_WEATHER_TOPIC, "*.*.*.20201127");
            //*.hebei.*.*
            channel.basicQos(1);
            channel.basicConsume(RabbitConstant.QUEUE_BAIDU , false , new DefaultConsumer(channel){
                @Override
                public void handleDelivery(String consumerTag, Envelope envelope, AMQP.BasicProperties properties, byte[] body) throws IOException {
                    System.out.println("百度天气收到气象信息:" + new String(body));
                    channel.basicAck(envelope.getDeliveryTag() , false);
                }
            });
        }
    }

    后台打印信息:

    消费者2(新浪)

    package com..confirm;
    
    
    import com..utils.RabbitConstant;
    import com..utils.RabbitUtils;
    import com.rabbitmq.client.*;
    
    import java.io.IOException;
    
    public class Sina {
        public static void main(String[] args) throws IOException {
            Connection connection = RabbitUtils.getConnection();
            final Channel channel = connection.createChannel();
            channel.queueDeclare(RabbitConstant.QUEUE_SINA, false, false, false, null);
    
            channel.queueBind(RabbitConstant.QUEUE_SINA, RabbitConstant.EXCHANGE_WEATHER_TOPIC, "us.#");
    
            channel.basicQos(1);
            channel.basicConsume(RabbitConstant.QUEUE_SINA , false , new DefaultConsumer(channel){
                @Override
                public void handleDelivery(String consumerTag, Envelope envelope, AMQP.BasicProperties properties, byte[] body) throws IOException {
                    System.out.println("腾讯天气收到气象信息:" + new String(body));
                    channel.basicAck(envelope.getDeliveryTag() , false);
                }
            });
        }
    }

    后台打印信息:

  • 相关阅读:
    Linux设备驱动程序学习(17)-USB 驱动程序(二)
    Linux设备驱动程序学习(11)中断处理
    Linux设备驱动程序学习(8)分配内存
    Linux设备驱动程序学习(12) Linux设备模型(底层原理简介)
    Linux设备驱动程序学习(9)与硬件通信
    Linux设备驱动程序学习(16)-USB 驱动程序(一)
    Linux设备驱动程序学习(7)内核的数据类型
    Linux设备驱动程序学习(4) 高级字符驱动程序操作[(1)ioctl and llseek]
    Linux设备驱动程序学习(14) Linux设备模型(各环节的整合)
    Linux设备驱动程序学习(6) 高级字符驱动程序操作[(3)设备文件的访问控制]
  • 原文地址:https://www.cnblogs.com/lifan12589/p/14304233.html
Copyright © 2020-2023  润新知