YMJake.Wolverine.RocketMQ
5.32.0-preview.3
This is a prerelease version of YMJake.Wolverine.RocketMQ.
dotnet add package YMJake.Wolverine.RocketMQ --version 5.32.0-preview.3
NuGet\Install-Package YMJake.Wolverine.RocketMQ -Version 5.32.0-preview.3
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="YMJake.Wolverine.RocketMQ" Version="5.32.0-preview.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="YMJake.Wolverine.RocketMQ" Version="5.32.0-preview.3" />
<PackageReference Include="YMJake.Wolverine.RocketMQ" />
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 YMJake.Wolverine.RocketMQ --version 5.32.0-preview.3
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: YMJake.Wolverine.RocketMQ, 5.32.0-preview.3"
#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 YMJake.Wolverine.RocketMQ@5.32.0-preview.3
#: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=YMJake.Wolverine.RocketMQ&version=5.32.0-preview.3&prerelease
#tool nuget:?package=YMJake.Wolverine.RocketMQ&version=5.32.0-preview.3&prerelease
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
YMJake.Wolverine.RocketMQ
Apache RocketMQ transport for Wolverine messaging.
Features
- Native RocketMQ transport integration for Wolverine
- Topic-based publishing through Wolverine routing conventions
- Listener configuration with ordered processing options
- Native RocketMQ dead-letter queue forwarding
- .NET Aspire named-connection support through
UseRocketMqUsingNamedConnection()
Supports .NET 8.0 and later.
Installation
dotnet add package YMJake.Wolverine.RocketMQ
Quick Start
builder.Host.UseWolverine(opts =>
{
opts.UseRocketMq("127.0.0.1:8081")
.Namespace("dev")
.DefaultConsumerGroup("order-service");
opts.ListenToRocketMqTopic("orders")
.ConsumerGroup("order-service")
.EnableNativeDeadLetterQueue()
.ProcessOrderedByMessageGroup();
opts.PublishMessage<OrderPlaced>().ToRocketMqTopic("orders");
});
Aspire Integration
This package supports .NET Aspire-style connection injection:
builder.Host.UseWolverine(opts =>
{
opts.UseRocketMqUsingNamedConnection("rocketmq")
.UseSsl(false)
.DefaultConsumerGroup("order-service");
opts.ListenToRocketMqTopic("orders")
.ConsumerGroup("order-service");
});
Recommended pairing:
- AppHost package:
YMJake.Aspire.Hosting.RocketMQ - Service package:
YMJake.Wolverine.RocketMQ
AppHost example:
var rocketmq = builder.AddRocketMQCluster("rocketmq")
.WithDashboard()
.AddTopic("orders");
builder.AddProject<Projects.MyWorker>("worker")
.WithReference(rocketmq)
.WaitForRocketMQCompletion(rocketmq);
Dependencies
YMJake.RocketMQ.ClientWolverineFx
License
Apache License 2.0.
Links
- NuGet: YMJake.Wolverine.RocketMQ
- Aspire Hosting: YMJake.Aspire.Hosting.RocketMQ
- Wolverine: JasperFx/wolverine
| Product | Versions 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 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 is compatible. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net10.0
- WolverineFx (>= 5.37.2)
- YMJake.RocketMQ.Client (>= 5.4.6)
-
net8.0
- WolverineFx (>= 5.37.2)
- YMJake.RocketMQ.Client (>= 5.4.6)
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 |
|---|---|---|
| 5.32.0-preview.3 | 65 | 5/7/2026 |
| 5.32.0-preview.2 | 65 | 4/23/2026 |
| 5.32.0-preview.1 | 57 | 4/23/2026 |
Preview 3: incremental preview release for Wolverine RocketMQ transport.