RabbitMQ RFC同步调用

RabbitMQ RFC同步调用是使用了两个异步调用完成的,生产者调用消费者的同时,自己也作为消费者等待某一队列的返回消息,消费者接受到生产者的消息同时,也作为消息发送者发送一消息给生产者。参考下图:

在这里插入图片描述

调用流程如下:

在这里插入图片描述
其他的消息服务器实现同步调用也是类似的原理,比如ActiveMQ。

下面编写消费者类Server
在这里插入图片描述
在这里插入图片描述
生产者Client代码
在这里插入图片描述
在这里插入图片描述
启动一命令行,将当前目录转移到项目所在的目录
在这里插入图片描述
在Eclipse中运行Client
在这里插入图片描述

代码:
package com.test.rfc;

import java.io.IOException;

import com.rabbitmq.client.AMQP;
import com.rabbitmq.client.Channel;
import com.rabbitmq.client.Connection;
import com.rabbitmq.client.ConnectionFactory;
import com.rabbitmq.client.Consumer;
import com.rabbitmq.client.DefaultConsumer;
import com.rabbitmq.client.Envelope;

public class Server {
	public static void main(String[] argv) {
		ConnectionFactory factory = new ConnectionFactory();
		factory.setUsername("admin");
		factory.setPassword("admin");
		factory.setHost("192.168.169.142"); //使用默认端口5672
		Connection connection = null;
				
		try {
			connection = factory.newConnection();
			final Channel channel = connection.createChannel();
			String queueName = "queue_rpc";
			channel.queueDeclare(queueName, false, false, false, null);
			Consumer consumer = new DefaultConsumer(channel)
			{

				@Override
				public void handleDelivery(String consumerTag,
					Envelope envelope, AMQP.BasicProperties properties,
					byte[] body) throws IOException 
				{
					System.out.println("test1" + new String(body));
					AMQP.BasicProperties replyProps = new AMQP.BasicProperties.Builder()
					.correlationId(properties.getCorrelationId())
					.build();
					String response = "hello client,I'm rfc server";
					channel.basicPublish("", properties.getReplyTo(),
					replyProps, response.getBytes());
					channel.basicAck(envelope.getDeliveryTag(), false);
				}
			};
			channel.basicConsume(queueName, false, consumer);
		} catch (IOException e) {
			e.printStackTrace();
		}
	}

}

package com.test.rfc;

import java.io.IOException;
import java.util.UUID;
import java.util.concurrent.ArrayBlockingQueue;
import java.util.concurrent.BlockingQueue;

import com.rabbitmq.client.*;

public class Client {
	public static void main(String[] argv) {
		try
		{
			//发送消息的队列,Server在这个队列上接受消息
			String queueName = "queue_rpc";
			ConnectionFactory factory = new ConnectionFactory();
			factory.setUsername("admin");
			factory.setPassword("admin");
			factory.setHost("192.168.169.142"); //使用默认端口5672
			Connection connection = null;
			connection = factory.newConnection();
			Channel channel = connection.createChannel();
			//生成临时的队列,Client在这队列上等待Server返回信息,Server向这个队列发消息
			String replyQueueName = channel.queueDeclare().getQueue();
			//生成唯一ID
			final String corrId = UUID.randomUUID().toString();
			AMQP.BasicProperties props = new AMQP.BasicProperties.Builder()
			.correlationId(corrId).replyTo(replyQueueName).build();
			//客户端发送RFC请求
			channel.basicPublish("", queueName, props, "GetUserInfo".getBytes());
			//Server返回消息
			final BlockingQueue response = new ArrayBlockingQueue(1);
			channel.basicConsume(replyQueueName, true,
				new DefaultConsumer(channel) {
					@Override
					public void handleDelivery(String consumerTag,
					Envelope envelope, AMQP.BasicProperties properties,
					byte[] body) throws IOException {
						System.out.println(properties.getCorrelationId());
						if (properties.getCorrelationId().equals(corrId)) {
							response.offer(body);
						}
					}
				});
			byte[] b = response.take();
			System.out.println(new String(b));
			channel.close();
			connection.close();
		}
		catch(Exception e)
		{
			e.printStackTrace();
		}
	}
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值