VOOZH about

URL: https://www.nuget.org/packages/Galosys.Foundation.RocketMQ.Client/

⇱ NuGet Gallery | Galosys.Foundation.RocketMQ.Client 26.5.20.1




Galosys.Foundation.RocketMQ.Client 26.5.20.1

dotnet add package Galosys.Foundation.RocketMQ.Client --version 26.5.20.1
 
 
NuGet\Install-Package Galosys.Foundation.RocketMQ.Client -Version 26.5.20.1
 
 
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="Galosys.Foundation.RocketMQ.Client" Version="26.5.20.1" />
 
 
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Galosys.Foundation.RocketMQ.Client" Version="26.5.20.1" />
 
Directory.Packages.props
<PackageReference Include="Galosys.Foundation.RocketMQ.Client" />
 
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Galosys.Foundation.RocketMQ.Client --version 26.5.20.1
 
 
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Galosys.Foundation.RocketMQ.Client, 26.5.20.1"
 
 
#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.
#:package Galosys.Foundation.RocketMQ.Client@26.5.20.1
 
 
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Galosys.Foundation.RocketMQ.Client&version=26.5.20.1
 
Install as a Cake Addin
#tool nuget:?package=Galosys.Foundation.RocketMQ.Client&version=26.5.20.1
 
Install as a Cake Tool
The NuGet Team does not provide support for this client. Please contact its maintainers for support.

Galosys.Foundation.RocketMQ.Client

成熟度: 🟡 预览 — 基于 Apache rocketmq.client 5.x,核心功能完成

基于 Apache rocketmq.client 5.x 的 RocketMQ 客户端实现,使用 gRPC 协议与 5.x Proxy 通信。

前置条件

  • RocketMQ 5.x 且已启动 Proxy 组件(gRPC 协议,默认端口 8081)
  • 不兼容 4.x NameServer 直连模式(如需 4.x 兼容请使用 Galosys.Foundation.NewLife.RocketMQ

安装

<PackageReference Include="Galosys.Foundation.RocketMQ.Client" Version="x.x.x" />

快速开始

1. 最小配置

{
 "RocketMQ": {
 "Endpoints": "localhost:8081"
 }
}

注意: Apache 5.x 客户端使用 gRPC 端口(默认 8081),不是 NameServer 的 9876。

2. 注册服务

services.AddRocketMQ(configuration);

3. 发送消息

using Galosys.Foundation.RocketMQ.Abstractions;

public class OrderService
{
 private readonly RmqTemplate _template;

 public OrderService(RmqTemplate template) => _template = template;

 public async Task SendAsync() =>
 await _template.SendAsync("order_created", new OrderCreatedMessage { OrderNo = "ORD001" });

 public async Task SendDelayAsync() =>
 await _template.SendAsync("order_created", new OrderCreatedMessage { OrderNo = "ORD001" }, delaySeconds: 30);
}

4. 消费消息

using Galosys.Foundation.RocketMQ.Abstractions;

[Handler]
public class OrderHandler : IMessageHandler<OrderCreatedMessage>
{
 [RmqHandler("order_created")]
 public Task<bool> HandleAsync(OrderCreatedMessage msg) => Task.FromResult(true);
}

完整配置

{
 "RocketMQ": {
 "Endpoints": "localhost:8081",
 "AccessKey": null,
 "SecretKey": null,
 "Ssl": false,
 "RequestTimeout": 10,
 "ConsumerGroup": "my_service",
 "Handlers": {
 "order_created": {
 "PrefetchCount": 16,
 "Concurrency": 4,
 "MaxRetryCount": 3,
 "RetryBaseDelayMs": 1000
 }
 }
 }
}

详细配置说明参见 。

实现细节

组件 说明
ApacheRmqPublisher 基于 Producer.Builder,按 Topic 缓存 Producer 实例
ApacheRmqConsumer 基于 SimpleConsumer.Builder,Receive 长轮询 + SemaphoreSlim 并发控制
ApacheRmqTemplate 组合 Publisher + Consumer 的统一门面
ApacheRmqBootstrapper IHostedLifecycleService,启动时扫描 [RmqHandler],关闭时释放资源
ApacheRmqHealthCheck 尝试创建临时 Producer 验证连通性
ApacheRmqTracing OTel ActivitySource,Span 带 Topic/Tag/ConsumerGroup 标签
ApacheRmqMeter 6 个 Counter/Histogram 指标

依赖

  • Galosys.Foundation.RocketMQ.Abstractions
  • rocketmq.client 5.1.0
Product Versions Compatible and additional computed target framework versions.
.NET net8.0 net8.0 is compatible.  net8.0-android net8.0-android was computed.  net8.0-browser net8.0-browser was computed.  net8.0-ios net8.0-ios was computed.  net8.0-maccatalyst net8.0-maccatalyst was computed.  net8.0-macos net8.0-macos was computed.  net8.0-tvos net8.0-tvos was computed.  net8.0-windows net8.0-windows was computed.  net9.0 net9.0 was computed.  net9.0-android net9.0-android was computed.  net9.0-browser net9.0-browser was computed.  net9.0-ios net9.0-ios was computed.  net9.0-maccatalyst net9.0-maccatalyst was computed.  net9.0-macos net9.0-macos was computed.  net9.0-tvos net9.0-tvos was computed.  net9.0-windows net9.0-windows was computed.  net10.0 net10.0 was computed.  net10.0-android net10.0-android was computed.  net10.0-browser net10.0-browser was computed.  net10.0-ios net10.0-ios was computed.  net10.0-maccatalyst net10.0-maccatalyst was computed.  net10.0-macos net10.0-macos was computed.  net10.0-tvos net10.0-tvos was computed.  net10.0-windows net10.0-windows was computed. 
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
26.5.20.1 93 5/20/2026
26.5.19.1 94 5/19/2026
26.5.18.1 90 5/18/2026
26.5.15.1 90 5/15/2026
26.5.12.3 87 5/12/2026
26.5.12.2 95 5/12/2026
26.4.27.1-rc1 97 4/26/2026
26.4.25.1-rc1 94 4/25/2026
26.4.22.2-rc7 97 4/22/2026
26.4.22.2-rc6 87 4/22/2026
26.4.22.2-rc4 93 4/22/2026
26.4.22.2-rc3 93 4/22/2026
26.4.19.1-rc1 96 4/19/2026