Franz.Common.Messaging.Kafka
1.7.8
dotnet add package Franz.Common.Messaging.Kafka --version 1.7.8
NuGet\Install-Package Franz.Common.Messaging.Kafka -Version 1.7.8
<PackageReference Include="Franz.Common.Messaging.Kafka" Version="1.7.8" />
<PackageVersion Include="Franz.Common.Messaging.Kafka" Version="1.7.8" />
<PackageReference Include="Franz.Common.Messaging.Kafka" />
paket add Franz.Common.Messaging.Kafka --version 1.7.8
#r "nuget: Franz.Common.Messaging.Kafka, 1.7.8"
#:package Franz.Common.Messaging.Kafka@1.7.8
#addin nuget:?package=Franz.Common.Messaging.Kafka&version=1.7.8
#tool nuget:?package=Franz.Common.Messaging.Kafka&version=1.7.8
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: 1.7.8
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
๐ 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.13.1)
- Franz.Common.Annotations (>= 1.7.8)
- Franz.Common.Hosting (>= 1.7.8)
- Franz.Common.Messaging (>= 1.7.8)
- Franz.Common.Messaging.Hosting (>= 1.7.8)
NuGet packages (4)
Showing the top 4 NuGet packages that depend on Franz.Common.Messaging.Kafka:
| Package | Downloads |
|---|---|
|
Franz.Common.Messaging.Bootstrap
Shared utility library for the Franz Framework. |
|
|
Franz.Common.Http.Messaging
Shared utility library for the Franz Framework. |
|
|
Franz.Common.Messaging.Hosting.Kafka
Shared utility library for the Franz Framework. |
|
|
Franz.Common.Messaging.Sagas
Shared utility library for the Franz Framework. |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 1.7.8 | 117 | 3/2/2026 |
| 1.7.7 | 141 | 1/31/2026 |
| 1.7.6 | 130 | 1/22/2026 |
| 1.7.5 | 146 | 1/10/2026 |
| 1.7.4 | 131 | 12/27/2025 |
| 1.7.3 | 228 | 12/22/2025 |
| 1.7.2 | 212 | 12/21/2025 |
| 1.7.1 | 160 | 12/20/2025 |
| 1.7.0 | 307 | 12/16/2025 |
| 1.6.21 | 238 | 11/27/2025 |
| 1.6.20 | 223 | 11/24/2025 |
| 1.6.19 | 206 | 10/25/2025 |
| 1.6.15 | 244 | 10/20/2025 |
| 1.6.14 | 228 | 10/15/2025 |
| 1.6.3 | 234 | 10/9/2025 |
| 1.6.2 | 232 | 10/7/2025 |
| 1.5.9 | 235 | 9/24/2025 |
| 1.5.4 | 231 | 9/23/2025 |
| 1.5.3 | 271 | 9/21/2025 |
| 1.5.2 | 274 | 9/21/2025 |