OpenSleigh.Transport.Kafka
1.0.3
dotnet add package OpenSleigh.Transport.Kafka --version 1.0.3
NuGet\Install-Package OpenSleigh.Transport.Kafka -Version 1.0.3
<PackageReference Include="OpenSleigh.Transport.Kafka" Version="1.0.3" />
paket add OpenSleigh.Transport.Kafka --version 1.0.3
#r "nuget: OpenSleigh.Transport.Kafka, 1.0.3"
// Install OpenSleigh.Transport.Kafka as a Cake Addin #addin nuget:?package=OpenSleigh.Transport.Kafka&version=1.0.3 // Install OpenSleigh.Transport.Kafka as a Cake Tool #tool nuget:?package=OpenSleigh.Transport.Kafka&version=1.0.3
OpenSleigh.Transport.Kafka
Description
Kafka Transport library for OpenSleigh
Installation
This library can be installed from Nuget: https://www.nuget.org/packages/OpenSleigh.Transport.Kafka/
How-to
The first thing to do is build an instance of KafkaConfiguration
with the connection details. This can be done by reading the current app configuration. Once done, all you have to do is to call the UseKafkaTransport
extension method:
services.AddOpenSleigh(cfg =>{
var connectionString = Configuration.GetConnectionString("kafka");
var kafkaConfig = new KafkaConfiguration(connectionString);
cfg.UseKafkaTransport(kafkaConfig);
// register the Persistence and the Sagas
});
It is also possible to use a custom naming policy to customize the name of the Topic and the Dead Letter Queue:
services.AddOpenSleigh(cfg =>{
// code omitted
cfg.UseKafkaTransport(kafkaConfig, builder =>
{
builder.UseMessageNamingPolicy<ProcessOrder>(() => new QueueReferences("orders", "orders.dead"));
})
});
If your application has to handle messages and events, not just dispatch them, you also have to configure each Saga :
services.AddOpenSleigh(cfg =>{
// code omitted //
cfg.AddSaga<MySaga, MySagaState>()
.UseStateFactory<StartSaga>(msg => new MySagaState(msg.CorrelationId))
.UseKafkaTransport();
});
Do you like this project? Then consider giving a donation!
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | 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. |
-
net6.0
- Confluent.Kafka (>= 1.9.2)
- OpenSleigh.Abstractions (>= 1.0.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.