• 大小: 8.36KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2020-12-14
  • 语言: C#
  • 标签: RabbitMQ  NET  

资源简介


资源截图

代码片段和文件信息

using System;
using System.Text;
using System.Threading;
using RabbitMQ.Client;
using RabbitMQ.Client.Events;

namespace Consumer
{
    class Program
    {
        static void Main(string[] args)
        {
        //创建连接工厂
        ConnectionFactory factory = new ConnectionFactory
        {
        UserName = “admin“//用户名
        Password = “admin“//密码
        HostName = “192.168.157.130“//rabbitmq ip
        };

        //创建连接
        var connection = factory.CreateConnection();
        //创建通道
        var channel = connection.CreateModel();

//事件基本消费者
EventingBasicConsumer consumer = new EventingBasicConsumer(channel);

//接收到消息事件
        consumer.Received += (ch ea) =>
        {
        var message = Encoding.UTF8.GetString(ea.Bo

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2017-09-21 11:11  Consumer\
     文件         279  2017-09-19 15:38  Consumer\Consumer.csproj
     文件        1475  2017-09-21 10:32  Consumer\Program.cs
     目录           0  2017-09-21 11:11  DotNetCore.RabbitMQ\
     文件        3647  2017-09-21 09:49  DotNetCore.RabbitMQ.sln
     文件         279  2017-09-14 23:21  DotNetCore.RabbitMQ\Producer.csproj
     文件        1112  2017-09-19 16:23  DotNetCore.RabbitMQ\Program.cs
     目录           0  2017-09-21 11:11  ProducerWithDirectExchange\
     文件         283  2017-09-21 09:06  ProducerWithDirectExchange\ProducerWithDirectExchange.csproj
     文件        1587  2017-09-21 09:42  ProducerWithDirectExchange\Program.cs
     目录           0  2017-09-21 11:11  ProducerWithFanoutExchange\
     文件         279  2017-09-21 09:34  ProducerWithFanoutExchange\ProducerWithFanoutExchange.csproj
     文件        3057  2017-09-21 10:51  ProducerWithFanoutExchange\Program.cs
     目录           0  2017-09-21 11:11  ProducerWithTopicExchange\
     文件         279  2017-09-21 10:22  ProducerWithTopicExchange\ProducerWithTopicExchange.csproj
     文件        1561  2017-09-21 10:31  ProducerWithTopicExchange\Program.cs

评论

共有 条评论