EasilyNET.RabbitBus.AspNetCore 3.24.914.125

There is a newer version of this package available.
See the version list below for details.
dotnet add package EasilyNET.RabbitBus.AspNetCore --version 3.24.914.125                
NuGet\Install-Package EasilyNET.RabbitBus.AspNetCore -Version 3.24.914.125                
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="EasilyNET.RabbitBus.AspNetCore" Version="3.24.914.125" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add EasilyNET.RabbitBus.AspNetCore --version 3.24.914.125                
#r "nuget: EasilyNET.RabbitBus.AspNetCore, 3.24.914.125"                
#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 EasilyNET.RabbitBus.AspNetCore as a Cake Addin
#addin nuget:?package=EasilyNET.RabbitBus.AspNetCore&version=3.24.914.125

// Install EasilyNET.RabbitBus.AspNetCore as a Cake Tool
#tool nuget:?package=EasilyNET.RabbitBus.AspNetCore&version=3.24.914.125                
EasilyNET.RabbitBus.AspNetCore
  • 支持延时队列,服务端需要启用 rabbitmq-delayed-message-exchange 插件
  • 支持同一个消息被多个 Handler 消费
  • 若是就是想写多个 Handler 但是又希望某些 Handler 不执行,可以在不需要的 Handler 上标记 [IgnoreHandler] 特性
  • 添加 MessagePack 序列化选项,可通过 ESerializer.MessagePack 或 ESerializer.TextJson 进行切换.
如何使用
  • 首先使用 Nuget 包管理工具添加依赖 EasilyNET.RabbitBus.AspNetCore
  • 等待下载完成和同意开源协议后,即可使用本库.
  • Step1.在 Program.cs 中配置消息总线
// 配置服务(亦可使用集群模式或者使用配置文件,或者环境变量.)
builder.Services.AddRabbitBus(c =>
{
    c.Host = "192.168.2.110";
    c.Port = 5672;
    c.UserName = "username";
    c.PassWord = "password";
    c.PoolCount = (uint)Environment.ProcessorCount;
    c.RetryCount = 5;
    c.Serializer = ESerializer.MessagePack;
    ...
});
  • Step2.接下来配置事件和事件处理器
/// <summary>
/// 测试消息类型,消息继承自 IEvent 或者 Event
/// </summary>
[Exchange("hoyo.test", EModel.Routing, "test", "orderqueue2")]
public class TestEvent : Event
{
    /// <summary>
    /// 消息
    /// </summary>
    public string Message { get; set; } = default!;
}

/// <summary>
/// 消息处理Handler
/// </summary>
public class TestEventHandler(ILogger<TestEventHandler> logger) : IEventHandler<TestEvent>
{
    /// <summary>
    /// 当消息到达的时候执行的Action
    /// </summary>
    /// <param name="event"></param>
    /// <returns></returns>
    public Task HandleAsync(TestEvent @event)
    {
        logger.LogInformation("TestEvent_{event}-----{date}", @event.Message, DateTime.Now);
        return Task.CompletedTask;
    }
}

/// <summary>
/// 若是存在同一个消息多个 Handler 实现,比如这里我们写了两个 Handler,那么发送一次消息这两个 Handler 均会执行.
/// </summary>
/// 若是不希望这个 Handler 执行可以标记
[IgnoreHandler]
public class TestEventHandlerSecond(ILogger<TestEventHandlerSecond> logger) : IEventHandler<TestEvent>
{
    /// <summary>
    /// 当消息到达的时候执行的Action
    /// </summary>
    /// <param name="event"></param>
    /// <returns></returns>
    public Task HandleAsync(TestEvent @event)
    {
        logger.LogInformation("TestEvent_{event}-----{date}", @event.Message, DateTime.Now);
        return Task.CompletedTask;
    }
}
  • Step3.使用消息队列发送消息
private readonly IBus _ibus;
// 控制器构造函数伪代码
construct(IBus ibus){
   _ibus = ibus;
}
/// <summary>
/// 创建一个延时消息,同时发送一个普通消息做对比
/// </summary>
[HttpPost("TTLTest")]
public async Task TTLTest()
{
    var rand = new Random();
    var ttl = rand.Next(1000, 10000);
    var ttlobj = new DelayedMessageEvent() { Message = $"延迟{ttl}毫秒,当前时间{DateTime.Now:yyyy-MM-dd HH:mm:ss}" };
    // 延时队列需要服务端安装延时队列插件.
    await _ibus.Publish(ttlobj, (uint)ttl);
    await _ibus.Publish(ttlobj);
}
Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  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.  net9.0 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
3.24.1107.140 29 11/7/2024
3.24.1107.54 30 11/7/2024
3.24.1107.34 31 11/7/2024
3.24.1105.111 37 11/5/2024
3.24.1103.31 40 11/2/2024
3.24.1103 37 11/2/2024
3.24.1031.135 35 10/31/2024
3.24.1031.112 34 10/31/2024
3.24.1031.104 36 10/31/2024
3.24.1029.142 39 10/29/2024
3.24.1025.30 130 10/24/2024
3.24.1022.142 29 10/22/2024
3.24.1018.204 97 10/18/2024
3.24.1018.175 90 10/18/2024
3.24.1018.166 91 10/18/2024
3.24.1018.93 94 10/18/2024
3.24.1017.42 44 10/16/2024
3.24.1016.161 46 10/16/2024
3.24.1015.231 45 10/15/2024
3.24.1015.14 48 10/14/2024
3.24.1012.114 42 10/12/2024
3.24.1009.115 47 10/9/2024
3.24.1008.160 43 10/8/2024
3.24.1008.133 41 10/8/2024
3.24.1007.185 44 10/7/2024
3.24.1003.33 48 10/2/2024
3.24.1002.162 49 10/2/2024
3.24.929.143 45 9/29/2024
3.24.929.141 45 9/29/2024
3.24.929.131 45 9/29/2024
3.24.929.122 49 9/29/2024
3.24.926.184 46 9/26/2024
3.24.926.182 48 9/26/2024
3.24.926.175 51 9/26/2024
3.24.924.160 49 9/24/2024
3.24.924.133 58 9/24/2024
3.24.924.124 49 9/24/2024
3.24.924.10 51 9/23/2024
3.24.924.1 41 9/23/2024
3.24.923.234 43 9/23/2024
3.24.923.232 47 9/23/2024
3.24.923.155 46 9/23/2024
3.24.919.92 59 9/19/2024
3.24.914.125 50 9/14/2024
3.24.914.115 49 9/14/2024
3.24.914.111 52 9/14/2024
3.24.911.95 52 9/11/2024
3.24.908.215 46 9/8/2024
3.24.904.200 52 9/4/2024
3.24.828.163 60 8/28/2024
3.24.820.173 59 8/20/2024
3.24.814.92 70 8/14/2024
3.24.812.115 62 8/12/2024
3.24.802.100 41 8/2/2024
3.24.801.162 48 8/1/2024
3.24.801.160 48 8/1/2024
3.24.801.155 50 8/1/2024
3.24.730.164 39 7/30/2024
3.24.730.91 36 7/30/2024
3.24.724.91 45 7/24/2024
3.24.718.105 67 7/18/2024
3.24.716.95 53 7/16/2024
3.24.712.94 48 7/12/2024
3.24.710.14 51 7/9/2024
3.24.709.105 56 7/9/2024
3.24.704.94 53 7/4/2024
3.24.701.90 51 7/1/2024
3.24.628.114 58 6/28/2024
3.24.627.145 50 6/27/2024
3.24.620.160 59 6/20/2024
3.24.613.115 55 6/13/2024
3.24.612.95 60 6/12/2024
3.24.528.90 57 5/28/2024
3.24.522.84 70 5/22/2024
3.24.512.213 53 5/12/2024
3.24.508.112 69 5/8/2024
2.2024.428.71 68 4/28/2024
2.2024.427.1128 68 4/27/2024
2.2.72 78 4/14/2024
2.2.71 57 4/12/2024
2.2.8 56 4/26/2024
2.2.6 57 4/10/2024
2.2.5 79 3/26/2024
2.2.4 76 3/25/2024
2.2.3 65 3/24/2024
2.2.2 72 3/21/2024
2.2.1 74 3/20/2024
2.2.0 80 3/13/2024
2.1.9 70 2/21/2024
2.1.8 73 2/18/2024
2.1.7 74 2/16/2024
2.1.6 87 2/14/2024
2.1.5 64 2/14/2024
2.1.4 89 2/9/2024
2.1.3 67 2/8/2024
2.1.2 99 2/5/2024
2.1.1.2 150 12/26/2023
2.1.1.1 86 12/26/2023
2.1.1 84 12/25/2023
2.1.0 100 12/17/2023
2.0.11 135 12/6/2023
2.0.1 130 11/15/2023
2.0.0 84 11/14/2023
1.9.1 103 11/1/2023
1.9.0 96 10/19/2023
1.9.0-preview2 195 10/12/2023
1.9.0-preview1 76 10/12/2023
1.8.9 122 10/11/2023
1.8.8 116 10/11/2023
1.8.7-rc2 82 9/21/2023
1.8.7-rc1 78 9/12/2023
1.8.6 114 8/31/2023
1.8.5 508 8/25/2023
1.8.4 106 8/24/2023
1.8.3 102 8/23/2023
1.8.2 146 8/22/2023
1.8.1 107 8/18/2023
1.8.0 107 8/15/2023
1.7.9 131 8/11/2023
1.7.8 104 8/11/2023
1.7.7 117 8/10/2023
1.7.6 113 8/9/2023
1.7.5 135 8/9/2023
1.7.4 153 8/3/2023
1.7.3 120 8/1/2023
1.7.2 118 7/31/2023
1.7.1 109 7/27/2023
1.7.0 118 7/25/2023
1.6.9 119 7/25/2023
1.6.8 107 7/24/2023
1.6.7 123 7/20/2023
1.6.6 117 7/19/2023
1.6.5 87 7/19/2023
1.6.4 109 7/17/2023
1.6.3 105 7/17/2023
1.6.2 122 7/12/2023
1.6.1 123 6/30/2023
1.6.0 102 6/30/2023