![]() |
VOOZH | about |
dotnet add package Galosys.Foundation.RocketMQ.Client --version 26.5.20.1
NuGet\Install-Package Galosys.Foundation.RocketMQ.Client -Version 26.5.20.1
<PackageReference Include="Galosys.Foundation.RocketMQ.Client" Version="26.5.20.1" />
<PackageVersion Include="Galosys.Foundation.RocketMQ.Client" Version="26.5.20.1" />Directory.Packages.props
<PackageReference Include="Galosys.Foundation.RocketMQ.Client" />Project file
paket add Galosys.Foundation.RocketMQ.Client --version 26.5.20.1
#r "nuget: Galosys.Foundation.RocketMQ.Client, 26.5.20.1"
#:package Galosys.Foundation.RocketMQ.Client@26.5.20.1
#addin nuget:?package=Galosys.Foundation.RocketMQ.Client&version=26.5.20.1Install as a Cake Addin
#tool nuget:?package=Galosys.Foundation.RocketMQ.Client&version=26.5.20.1Install as a Cake Tool
成熟度: 🟡 预览 — 基于 Apache rocketmq.client 5.x,核心功能完成
基于 Apache rocketmq.client 5.x 的 RocketMQ 客户端实现,使用 gRPC 协议与 5.x Proxy 通信。
Galosys.Foundation.NewLife.RocketMQ)<PackageReference Include="Galosys.Foundation.RocketMQ.Client" Version="x.x.x" />
{
"RocketMQ": {
"Endpoints": "localhost:8081"
}
}
注意: Apache 5.x 客户端使用 gRPC 端口(默认 8081),不是 NameServer 的 9876。
services.AddRocketMQ(configuration);
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);
}
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.Abstractionsrocketmq.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. |
This package is not used by any NuGet packages.
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 |