NetPro.EasyNetQ 6.0.5-beta.7

This is a prerelease version of NetPro.EasyNetQ.
There is a newer version of this package available.
See the version list below for details.
dotnet add package NetPro.EasyNetQ --version 6.0.5-beta.7
NuGet\Install-Package NetPro.EasyNetQ -Version 6.0.5-beta.7
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="NetPro.EasyNetQ" Version="6.0.5-beta.7" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add NetPro.EasyNetQ --version 6.0.5-beta.7
#r "nuget: NetPro.EasyNetQ, 6.0.5-beta.7"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install NetPro.EasyNetQ as a Cake Addin
#addin nuget:?package=NetPro.EasyNetQ&version=6.0.5-beta.7&prerelease

// Install NetPro.EasyNetQ as a Cake Tool
#tool nuget:?package=NetPro.EasyNetQ&version=6.0.5-beta.7&prerelease

EasyNetQ使用

NuGet

对EasyNetQ的封装,简化使用,支持多库

使用

appsetting.json
"EasyNetQOption": {
    "ConnectionString": [
      {
        "Key": "rabbit2", //连接串key别名,唯一
        "Value": "host=192.168.18.129:5672;virtualHost=/;username=admin;password=123456;timeout=60" //别名key对应的连接串
      },
      {
        "Key": "rabbit1", //连接串key别名,唯一
        "Value": "host=192.168.18.129:5672;virtualHost=/;username=admin;password=123456;timeout=60" //别名key对应的连接串
      }
    ]
  },

启用服务

没有基于NetPro.Web.Api 的使用场景,必须手动进行初始化,如下:

IConfiguration Configuration;

public void ConfigureServices(IServiceCollection services)
{    
       services.AddEasyNetQ(Configuration);
}

基于NetPro.Web.Api的使用,只需要添加引用后配置以上appsetting.josn配置EasyNetQOption节点即可

使用说明

 public class RabbitmqService : IRabbitmqService
    {
        private readonly IEasyNetQMulti _easyNetQMulti;
        public RabbitmqService( IEasyNetQMulti easyNetQMulti)
        {
            _easyNetQMulti=easyNetQMulti;
        }

        /// <summary>
        /// 
        /// </summary>
        public void Method()
        {
             //订阅/Subscribe
                    _idbus ["rabbit2"].Subscribe<TextMessage>("subscriptionId", tm =>
                    {
                        Console.WriteLine("Recieve Message: {0}", tm.Text);
                    });

           //发布/Publish
                using (var bus = _easyNetQMulti["rabbit21"])
                {
                    var input = "";
                    Console.WriteLine("Please enter a message. 'q'/'Q' to quit.");
                    while ((input = Console.ReadLine()).ToLower() != "q")
                    {
                        bus.PubSub.Publish(new TextMessage
                        {
                            Text = input
                        });
                    }
                }
        }
    }
更新中...

reference 使用rabbitmq消息队列——EasyNetQ插件介绍

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp3.1 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
6.0.16 174 7/24/2023
6.0.15 427 7/19/2022
6.0.14 423 7/10/2022
6.0.13 425 6/15/2022
6.0.12 372 6/15/2022
6.0.11 389 6/15/2022
6.0.10 389 6/11/2022
6.0.9 393 6/8/2022
6.0.8 450 5/26/2022
6.0.8-beta.3 104 5/24/2022
6.0.8-beta.2 101 5/24/2022
6.0.7 406 5/18/2022
6.0.6 412 4/28/2022
6.0.5 421 3/30/2022
6.0.5-beta.20 104 4/27/2022
6.0.5-beta.19 111 4/25/2022
6.0.5-beta.18 114 4/22/2022
6.0.5-beta.17 125 4/16/2022
6.0.5-beta.16 126 4/8/2022
6.0.5-beta.15 110 4/8/2022
6.0.5-beta.14 119 4/7/2022
6.0.5-beta.13 116 4/7/2022
6.0.5-beta.12 110 4/6/2022
6.0.5-beta.11 112 4/6/2022
6.0.5-beta.10 114 3/31/2022
6.0.5-beta.9 131 3/26/2022
6.0.5-beta.8 125 3/22/2022
6.0.5-beta.7 105 3/21/2022
6.0.5-beta.6 122 3/14/2022
6.0.5-beta.5 117 3/2/2022
6.0.5-beta.4 121 2/22/2022
6.0.5-beta.3 118 2/18/2022
6.0.5-beta.2 110 2/18/2022
6.0.5-beta.1 112 2/16/2022
6.0.4 394 2/10/2022
6.0.3 417 2/9/2022
6.0.3-beta.9 110 2/10/2022
6.0.3-beta.7 136 1/27/2022
6.0.3-beta.6 147 1/19/2022
6.0.3-beta.5 131 1/18/2022