服务器之家

服务器之家 > 正文

C#操作RabbitMQ的完整实例

时间:2022-01-20 14:24     来源/作者:YSWALLE

一、下载rabbitmq

http://www.rabbitmq.com/install-windows.html

C#操作RabbitMQ的完整实例

二、下载otp

http://www.erlang.org/downloads

C#操作RabbitMQ的完整实例

三、安装otp、rabbitmq

C#操作RabbitMQ的完整实例

C#操作RabbitMQ的完整实例

四、配置rabbitmq

找到bat的目录

C#操作RabbitMQ的完整实例

执行相关命令

C#操作RabbitMQ的完整实例

1.添加用户密码 rabbitmqctl add_user wenli wenli

2.设置wenli为管理员rabbitmqctl set_user_tags wenli administrator

3.启动rabbitmq的web管理rabbitmq-plugins enable rabbitmq_management

4.创建virtual host

C#操作RabbitMQ的完整实例

5.设置用户权限

点击用户名进行设置

C#操作RabbitMQ的完整实例

将virtual hosts 权限赋给用户wenli

C#操作RabbitMQ的完整实例

6.创建exchanges

C#操作RabbitMQ的完整实例

五.创建c# console

1.下载rabbitmq驱动 https://github.com/yswenli/wenli.data.rabbitmq/releases/tag/release1.0.0

2.添加引用 C#操作RabbitMQ的完整实例

3.添加配置

C#操作RabbitMQ的完整实例

4.测试代码:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
using system;
using system.text;
using system.threading;
using system.threading.tasks;
 
namespace wenli.data.rabbitmq.console
{
  using console = system.console;
 
  class program
  {
    static void main(string[] args)
    {
      console.title = "wenli.data.rabbitmq.console";
      console.writeline("正连接到mq");
 
      try
      {
        test();
      }
      catch (exception ex)
      {
        console.writeline("err:" + ex.message + ex.source + ex.stacktrace);
      }
 
      console.read();
    }
 
 
    static void test()
    {
 
      var topic = "testtopic";
 
      var cnn = rabbitmqbuilder.get(mqconfig.default).getconnection();
 
      var operation = cnn.getoperation(topic);
 
      console.writeline("正连接到订阅【" + topic + "】");
 
      operation.subscribe();
 
      console.writeline("正在入队");
 
      task.factory.startnew(() =>
      {
        while (true)
        {
          operation.enqueue(encoding.utf8.getbytes(datetime.now.tostring("yyyy-mm-dd hh:mm:ss.fff") + "   hello!"));
          thread.sleep(1);
        }
      });
 
 
 
 
      console.writeline("正在出队");
 
 
 
      task.factory.startnew(() =>
      {
        while (true)
        {
          var result = operation.dnqueue();
 
          if (result == null)
          {
            thread.sleep(1);
          }
          else
          {
            console.writeline(encoding.utf8.getstring(result));
          }
        }
      });
 
      console.readline();
 
      console.writeline("正在取消订阅");
 
      operation.unsubscribe();
 
      console.writeline("测试完成");
    }
  }
}

5.运行结果:

C#操作RabbitMQ的完整实例

C#操作RabbitMQ的完整实例

C#操作RabbitMQ的完整实例

至此c# 成功操作rabbitmq完成。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。

原文链接:http://www.cnblogs.com/yswenli/archive/2017/08/29/7446919.html

标签:

相关文章

热门资讯

蜘蛛侠3英雄无归3正片免费播放 蜘蛛侠3在线观看免费高清完整
蜘蛛侠3英雄无归3正片免费播放 蜘蛛侠3在线观看免费高清完整 2021-08-24
yue是什么意思 网络流行语yue了是什么梗
yue是什么意思 网络流行语yue了是什么梗 2020-10-11
背刺什么意思 网络词语背刺是什么梗
背刺什么意思 网络词语背刺是什么梗 2020-05-22
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全 2019-12-26
2021年耽改剧名单 2021要播出的59部耽改剧列表
2021年耽改剧名单 2021要播出的59部耽改剧列表 2021-03-05
返回顶部