NetPro.EasyNetQ
6.0.5-beta.16
.NET 6.0
This package targets .NET 6.0. The package is compatible with this framework or higher.
.NET Core 3.1
This package targets .NET Core 3.1. The package is compatible with this framework or higher.
This is a prerelease version of NetPro.EasyNetQ.
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package NetPro.EasyNetQ --version 6.0.5-beta.16
NuGet\Install-Package NetPro.EasyNetQ -Version 6.0.5-beta.16
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.16" />
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.16
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: NetPro.EasyNetQ, 6.0.5-beta.16"
#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.16&prerelease // Install NetPro.EasyNetQ as a Cake Tool #tool nuget:?package=NetPro.EasyNetQ&version=6.0.5-beta.16&prerelease
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
EasyNetQ使用
对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,IConfiguration configuration)
{
services.AddEasyNetQ().Build(configuration);
}
基于NetPro.Web.Api的使用,只需要添加引用后配置以上appsetting.josn配置EasyNetQOption节点即可
使用说明
发布者
/// <summary>
/// rabbitmq发布者
/// </summary>
public class EasyNetQService : IRabbitmqService
{
private readonly IdleBus<IBus> _idbus;//适合用于发布者使用,内部有对象管理机制如用于订阅有连接断开可能的错误。
private static bool _stop;
public EasyNetQService(IdleBus<IBus> idbus)
{
_idbus = idbus;
}
public async Task PublishAsync(string dbKey = "rabbit1")
{
_idbus.Get(dbKey).PubSub.PublishAsync(new RabbitMessageModel { Text = $"[{DateTimeOffset.UtcNow.ToUnixTimeMilliseconds()}]this is a message" })
.ContinueWith(p =>
{
if (p.Exception != null)
p.Exception.Handle(x =>
{
Console.WriteLine(x.Message);
return true;
});
});
}
}
/// <summary>
/// 定义rabbitmq 的队列,交换机等
/// </summary>
[Queue("my_queue_name", ExchangeName = "my_exchange_name_")]
public class RabbitMessageModel
{
/// <summary>
///
/// </summary>
public string Text { get; set; }
}
消费者
/// <summary>
/// rabbitmq消费者
/// </summary>
internal class RabbitMqStartTask : IStartupTask//消费者只需要初始化一次,放在后台服务或系统初始化操作中
{
private readonly IEasyNetQMulti _easyNetQMulti;//适合用于订阅者使用,无需using包裹保持对象不销毁以达到持续订阅。
public RabbitMqStartTask()
{
_easyNetQMulti = EngineContext.Current.Resolve<IEasyNetQMulti>();
}
public int Order => 0;
public void Execute()
{
//订阅/Subscribe
//订阅需要保持长连接,请使用EasyNetQMulti获取连接对象并且不用使用using和调用dispose()
var bus = _easyNetQMulti["rabbit1"];
//同交换机,同队列下subscriptionId为订阅唯一标识,相同标识会依次收到订阅消息,类似于广播
bus.PubSub.Subscribe<RabbitMessageModel>("subscriptionId_", tm =>
{
Console.WriteLine("Recieve Message: {0}", tm.Text);
});
}
}
性能:
高级用法:
- 自定义方式获取连接串
public class XXXEasyNetQ : INetProStartup
{
public double Order { get; set; } = int.MaxValue;
public void ConfigureServices(IServiceCollection services, IConfiguration? configuration = null, ITypeFinder? typeFinder = null)
{
services.AddEasyNetQ(GetConnectionString);
}
public void Configure(IApplicationBuilder application, IWebHostEnvironment env)
{
}
public IList<ConnectionString> GetConnectionString(IServiceProvider serviceProvider)
{
var connector = new List<ConnectionString>
{
new ConnectionString { Key = "2", Value = "host=192.168.100.187:5672;virtualHost=my_vhost;username=admin;password=admin;timeout=60" }
};
return connector;
}
}
更新中...
reference 使用rabbitmq消息队列——EasyNetQ插件介绍
Product | Versions 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.
-
.NETCoreApp 3.1
- EasyNetQ (>= 6.3.1)
- IdleBus (>= 1.5.2)
- Microsoft.Extensions.Configuration.Abstractions (>= 6.0.0)
- Microsoft.Extensions.Configuration.Binder (>= 6.0.0)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 6.0.0)
- NetPro.Startup (>= 6.0.5-beta.16)
-
net6.0
- EasyNetQ (>= 6.3.1)
- IdleBus (>= 1.5.2)
- Microsoft.Extensions.Configuration.Abstractions (>= 6.0.0)
- Microsoft.Extensions.Configuration.Binder (>= 6.0.0)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 6.0.0)
- NetPro.Startup (>= 6.0.5-beta.16)
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 | 217 | 7/24/2023 |
6.0.15 | 456 | 7/19/2022 |
6.0.14 | 446 | 7/10/2022 |
6.0.13 | 456 | 6/15/2022 |
6.0.12 | 397 | 6/15/2022 |
6.0.11 | 418 | 6/15/2022 |
6.0.10 | 420 | 6/11/2022 |
6.0.9 | 423 | 6/8/2022 |
6.0.8 | 479 | 5/26/2022 |
6.0.8-beta.3 | 121 | 5/24/2022 |
6.0.8-beta.2 | 118 | 5/24/2022 |
6.0.7 | 430 | 5/18/2022 |
6.0.6 | 433 | 4/28/2022 |
6.0.5 | 451 | 3/30/2022 |
6.0.5-beta.20 | 115 | 4/27/2022 |
6.0.5-beta.19 | 128 | 4/25/2022 |
6.0.5-beta.18 | 130 | 4/22/2022 |
6.0.5-beta.17 | 138 | 4/16/2022 |
6.0.5-beta.16 | 137 | 4/8/2022 |
6.0.5-beta.15 | 121 | 4/8/2022 |
6.0.5-beta.14 | 129 | 4/7/2022 |
6.0.5-beta.13 | 127 | 4/7/2022 |
6.0.5-beta.12 | 120 | 4/6/2022 |
6.0.5-beta.11 | 127 | 4/6/2022 |
6.0.5-beta.10 | 125 | 3/31/2022 |
6.0.5-beta.9 | 146 | 3/26/2022 |
6.0.5-beta.8 | 141 | 3/22/2022 |
6.0.5-beta.7 | 121 | 3/21/2022 |
6.0.5-beta.6 | 139 | 3/14/2022 |
6.0.5-beta.5 | 130 | 3/2/2022 |
6.0.5-beta.4 | 131 | 2/22/2022 |
6.0.5-beta.3 | 128 | 2/18/2022 |
6.0.5-beta.2 | 126 | 2/18/2022 |
6.0.5-beta.1 | 128 | 2/16/2022 |
6.0.4 | 423 | 2/10/2022 |
6.0.3 | 444 | 2/9/2022 |
6.0.3-beta.9 | 120 | 2/10/2022 |
6.0.3-beta.7 | 153 | 1/27/2022 |
6.0.3-beta.6 | 160 | 1/19/2022 |
6.0.3-beta.5 | 144 | 1/18/2022 |