Franz.Common.Messaging.Kafka
2.2.16
dotnet add package Franz.Common.Messaging.Kafka --version 2.2.16
NuGet\Install-Package Franz.Common.Messaging.Kafka -Version 2.2.16
<PackageReference Include="Franz.Common.Messaging.Kafka" Version="2.2.16" />
<PackageVersion Include="Franz.Common.Messaging.Kafka" Version="2.2.16" />Directory.Packages.props
<PackageReference Include="Franz.Common.Messaging.Kafka" />Project file
paket add Franz.Common.Messaging.Kafka --version 2.2.16
#r "nuget: Franz.Common.Messaging.Kafka, 2.2.16"
#:package Franz.Common.Messaging.Kafka@2.2.16
#addin nuget:?package=Franz.Common.Messaging.Kafka&version=2.2.16Install as a Cake Addin
#tool nuget:?package=Franz.Common.Messaging.Kafka&version=2.2.16Install as a Cake Tool
Franz.Common.Messaging.Kafka
A Kafka transport integration for the Franz Framework, designed to provide clean, deterministic, and production-grade interaction with Kafka topics, producers, and consumers.
This package focuses exclusively on Kafka transport concerns: configuration, producers, consumers, serialization, and transactions.
π§± Hosting, background execution, and listeners are intentionally not handled here. They live in Franz.Common.Messaging.Hosting.Kafka.
β¨ Features
Kafka Transport & Configuration
- Centralized Kafka configuration via
MessagingOptions ConnectionProviderandConnectionFactoryProviderfor managing Kafka connections- Deterministic, DI-friendly Kafka setup
Kafka Producers
MessagingPublisherfor publishing integration eventsMessagingSenderfor point-to-point messaging- Automatic topic resolution and naming strategies
Kafka Consumers
- Native usage of
Confluent.Kafka.IConsumer<string, string> IKafkaConsumerFactoryas the single authority for consumer creation- Correct lifetime management aligned with Kafka consumer group semantics
Modeling
KafkaModelandModelProviderfor Kafka-based domain modeling- Strong separation between messaging models and business logic
Serialization
IMessageDeserializerJsonMessageDeserializer- Deterministic JSON serialization using Franz messaging contracts
Transactions
MessagingTransactionfor Kafka-backed transactional workflows
Utilities
ExchangeNamerandTopicNamerfor consistent topic naming- Messaging helpers shared across Franz transports
Dependency Injection
- Fluent
ServiceCollectionExtensionsfor Kafka transport registration - No accidental hosting or background execution side effects
π§ Architectural Scope
This package is transport-only.
| Responsibility | Package |
|---|---|
| Kafka producers | β Franz.Common.Messaging.Kafka |
| Kafka consumers (transport) | β Franz.Common.Messaging.Kafka |
| Background listeners | β |
| Hosted services | β |
| Message dispatch pipelines | β |
| Hosting / workers | β Franz.Common.Messaging.Hosting.Kafka |
This separation ensures:
- Testability with Testcontainers
- Clean CI/CD pipelines
- No hidden threads or background services
- Reuse in CLI tools, workers, APIs, and serverless contexts
π¦ Dependencies
This package depends on:
Confluent.Kafka (2.3.0)
Core Kafka client implementationFranz.Common.Messaging
Core messaging abstractions and contractsFranz.Common.Annotations
Messaging and modeling annotations
β οΈ Hosting integration is intentionally excluded. Use Franz.Common.Messaging.Hosting.Kafka for background listeners.
π₯ Installation
From NuGet
dotnet add package Franz.Common.Messaging.Kafka
π Usage
1οΈβ£ Register Kafka Transport
using Franz.Common.Messaging.Kafka.Extensions;
public void ConfigureServices(IServiceCollection services)
{
services.AddKafkaMessaging(configuration);
}
This registers:
- Kafka producers
- Kafka senders
- Kafka consumers (transport only)
No hosted services are started.
2οΈβ£ Publish Messages
public class OrderPublisher
{
private readonly IMessagingPublisher _publisher;
public OrderPublisher(IMessagingPublisher publisher)
{
_publisher = publisher;
}
public async Task PublishAsync(OrderCreatedEvent evt)
{
await _publisher.PublishAsync(evt);
}
}
3οΈβ£ Send Messages
public class PaymentSender
{
private readonly IMessagingSender _sender;
public PaymentSender(IMessagingSender sender)
{
_sender = sender;
}
public async Task SendAsync(PaymentCommand command)
{
await _sender.SendAsync(command);
}
}
4οΈβ£ Kafka Consumers (Important)
Franz does not re-abstract Kafka consumers.
Consumers are provided directly by Confluent:
IConsumer<string, string>
They are:
- Created by
IKafkaConsumerFactory - Registered as long-lived singletons
- Fully compatible with Confluent.Kafka tooling and documentation
This avoids:
- Interface drift
- Partial re-implementations
- Subtle incompatibilities during upgrades
π§ͺ Testing & CI
This design is fully compatible with:
- Testcontainers (Kafka)
- Azure DevOps pipelines
- Docker-based integration tests
- Local developer environments
Because:
- No background services auto-start
- No implicit threads are created
- Kafka consumers are explicit and controlled
π Integration with the Franz Framework
This package integrates with:
- Franz.Common.Messaging
- Franz.Common.Messaging.Hosting.Kafka (optional, for background execution)
- Franz.Common.Mediator
- Franz.Common.EntityFramework
- Franz.Common.Business
Kafka is treated as a transport, not an execution model.
π§Ύ Versioning & Changelog
Current Version: v2.2.16
Version 1.7.01
- π§± Corrected transport vs hosting separation
- π Removed Kafka consumer re-abstraction
- π Centralized consumer creation via
IKafkaConsumerFactory - β»οΈ Fixed DI lifetimes for Kafka consumers
- π§© Clean separation between messaging and hosting layers
- π§ͺ Improved Testcontainers and CI reliability
v2.0.2 β Internal Modernization
- Messaging and infrastructure refactored for async, thread-safety, and modern .NET 10 patterns.
- Full granular control of KafkaMessagingOptions.
- All APIs remain fully backward compatible.
- Tests, listeners, and pipeline components modernized.
2.0.7 β Kafka Registration now handles per Event registration automatically, no need to specify each event type manually.
π License
MIT License
See the LICENSE file for details.
π§ Final Note
This package intentionally mirrors enterprise messaging frameworks (MassTransit, NServiceBus, Brighter) by enforcing:
Transport β Hosting
That separation is what makes Franz:
- Predictable
- Testable
- Scalable
- Production-safe
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | 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. |
-
net10.0
- Confluent.Kafka (>= 2.14.2)
- Franz.Common.Annotations (>= 2.2.16)
- Franz.Common.Hosting (>= 2.2.16)
- Franz.Common.Messaging (>= 2.2.16)
- Franz.Common.Messaging.Hosting (>= 2.2.16)
- SharpCompress (>= 1.0.0)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on Franz.Common.Messaging.Kafka:
| Package | Downloads |
|---|---|
|
Franz.Common.Messaging.Hosting.Kafka
Shared utility library for the Franz Framework. |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 2.2.16 | 45 | 7/2/2026 |
| 2.2.15 | 112 | 6/29/2026 |
| 2.2.14 | 112 | 6/29/2026 |
| 2.2.13 | 113 | 6/29/2026 |
| 2.2.12 | 111 | 6/28/2026 |
| 2.2.11 | 108 | 6/28/2026 |
| 2.2.10 | 111 | 6/28/2026 |
| 2.2.9 | 114 | 6/28/2026 |
| 2.2.8 | 110 | 6/28/2026 |
| 2.2.7 | 126 | 6/7/2026 |
| 2.2.6 | 124 | 6/6/2026 |
| 2.2.5 | 127 | 6/4/2026 |
| 2.2.4 | 118 | 6/3/2026 |
| 2.2.3 | 141 | 6/2/2026 |
| 2.2.2 | 154 | 6/2/2026 |
| 2.2.1 | 141 | 5/24/2026 |
| 2.1.4 | 142 | 4/27/2026 |
| 2.1.3 | 133 | 4/26/2026 |
| 2.1.2 | 130 | 4/26/2026 |
| 2.1.1 | 141 | 4/22/2026 |