原理:异步发送是指发送方发出数据后,不等接收方发回响应,接着发送下个数据包的通讯方式。MQ 的异步发送,需要用户实现异步发送回调接口(SendCallback),在执行消息的异步发送时,应用不需要等待服务器响应即可直接返回,通过回调接口接收务器响应,并对服务器的响应结果进行处理。
应用场景:异步发送一般用于链路耗时较长,对 RT 响应时间较为敏感的业务场景,例如用户视频上传后通知启动转码服务,转码完成后通知推送转码结果等。
直接上代码
jar包依赖:
com.aliyun.openservices ons-client 1.2.4
生产者:
package yangjiachang.mq.producter; import com.aliyun.openservices.ons.api.*; import java.util.Properties; /** * Created by yangjiachang on 2016/8/4. */ public class AsyncProducerTest { public static void main(String[] args) { Properties properties = new Properties(); properties.put(PropertyKeyConst.ProducerId, "PID_YJC_DEMO_02");// 您在MQ控制台创建的Producer ID properties.put(PropertyKeyConst.AccessKey, "rIa4vosh93cvU79x");// 鉴权用AccessKey,在阿里云服务器管理控制台创建 properties.put(PropertyKeyConst.SecretKey, "Cp3Mqo0UgqbLfRU5dSCboxLHei73M8");// 鉴权用SecretKey,在阿里云服务器管理控制台创建 properties.setProperty(PropertyKeyConst.SendMsgTimeoutMillis, "10000");//设置发送超时时间,单位毫秒 Producer producer = ONSFactory.createProducer(properties); // 在发送消息前,必须调用start方法来启动Producer,只需调用一次即可。 producer.start(); Message msg = new Message( // Message Topic "yjc_mq_demo", // Message Tag, // 可理解为Gmail中的标签,对消息进行再归类,方便Consumer指定过滤条件在MQ服务器过滤 "demo3", // Message Body // 任何二进制形式的数据, MQ不做任何干预, // 需要Producer与Consumer协商好一致的序列化和反序列化方式 "Hello MQ-Async".getBytes()); // 设置代表消息的业务关键属性,请尽可能全局唯一,以方便您在无法正常收到消息情况下,可通过MQ控制台查询消息并补发 // 注意:不设置也不会影响消息正常收发 msg.setKey("demo003"); // 异步发送消息, 发送结果通过callback返回给客户端。 producer.sendAsync(msg, new SendCallback() { public void onSuccess(final SendResult sendResult) { // 消费发送成功 System.out.println("send message success. topic=" + sendResult.getTopic() + ", msgId=" + sendResult.getMessageId()); } public void onException(OnExceptionContext context) { // 消息发送失败 System.out.println("send message failed. topic=" + context.getTopic() + ", msgId=" + context.getMessageId()); } }); // 在callback返回之前即可取得msgId。 System.out.println("send message async. topic=" + msg.getTopic() + ", msgId=" + msg.getMsgID()); // 在应用退出前,销毁Producer对象。注意:如果不销毁也没有问题 producer.shutdown(); } }
消费者:
package yangjiachang.mq.consumer; import com.aliyun.openservices.ons.api.*; import java.util.Properties; /** * Created by yangjiachang on 2016/8/1. */ public class SyncConsumerTest { public static void main(String[] args) { Properties properties = new Properties(); properties.put(PropertyKeyConst.ConsumerId, "CID_YJC_DEMO_01");// 您在MQ控制台创建的Consumer ID properties.put(PropertyKeyConst.AccessKey, "rIa4vosh93cvU79x");// 鉴权用AccessKey,在阿里云服务器管理控制台创建 properties.put(PropertyKeyConst.SecretKey, "Cp3Mqo0UgqbLfRU5dSCboxLHei73M8");// 鉴权用SecretKey,在阿里云服务器管理控制台创建 Consumer consumer = ONSFactory.createConsumer(properties); consumer.subscribe("yjc_mq_demo", "*", new MessageListener() { public Action consume(Message message, ConsumeContext context) { System.out.println("Receive: " + message); System.out.println("Receive messageBody: " + new String(message.getBody())); return Action.CommitMessage; } }); consumer.start(); System.out.println("Consumer Started"); } }
执行生产者AsyncProducerTest代码:
send message async. topic=yjc_mq_demo, msgId=C0A8914725BC1D44BCFA3A85BB580000
send message success. topic=yjc_mq_demo, msgId=C0A8914725BC1D44BCFA3A85BB580000
执行消费者SyncConsumerTest代码:
Consumer Started
Receive: Message [topic=yjc_mq_demo, systemProperties={KEYS=demo003, __KEY=demo003, __RECONSUMETIMES=0, __MSGID=C0A8914725BC1D44BCFA3A85BB580000, MIN_OFFSET=0, __TAG=demo3, TAGS=demo3, MAX_OFFSET=17}, userProperties={UNIQ_KEY=C0A8914725BC1D44BCFA3A85BB580000, MSG_REGION=cn-qingdao-publictest, CONSUME_START_TIME=1471005843045}, body=14]
Receive messageBody: Hello MQ-Async
到这里就可以看出AsyncProducerTest产生了一条Message ID为C0A8914725BC1D44BCFA3A85BB580000的消息已经被SyncConsumerTest所接收。