kafka-net-core 1.0.2

There is a newer version of this package available.
See the version list below for details.
dotnet add package kafka-net-core --version 1.0.2
NuGet\Install-Package kafka-net-core -Version 1.0.2
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="kafka-net-core" Version="1.0.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add kafka-net-core --version 1.0.2
#r "nuget: kafka-net-core, 1.0.2"
#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.
// Install kafka-net-core as a Cake Addin
#addin nuget:?package=kafka-net-core&version=1.0.2

// Install kafka-net-core as a Cake Tool
#tool nuget:?package=kafka-net-core&version=1.0.2

NuGet version

kafka-net-core

This is the net core versions of the library kafka-net

Examples

Use .NET CLI

  dotnet add package kafka-net-core --version 1.0.0

Producer
var options = new KafkaOptions(new Uri("http://SERVER1:9092"), new Uri("http://SERVER2:9092"));
var router = new BrokerRouter(options);
var client = new Producer(router);

client.SendMessageAsync("TestHarness", new[] { new Message("hello world")}).Wait();

using (client) { }
Consumer
var options = new KafkaOptions(new Uri("http://SERVER1:9092"), new Uri("http://SERVER2:9092"));
var router = new BrokerRouter(options);
var consumer = new Consumer(new ConsumerOptions("TestHarness", router));

//Consume returns a blocking IEnumerable (ie: never ending stream)
foreach (var message in consumer.Consume())
{
    Console.WriteLine("Response: P{0},O{1} : {2}", 
        message.Meta.PartitionId, message.Meta.Offset, message.Value);  
}
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  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. 
.NET Core netcoreapp2.1 is compatible.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETCoreApp 2.1

    • No dependencies.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on kafka-net-core:

Package Downloads
EngineFramework

This Framework write for writing service .net core speciality for service that working with queues like kafka and rabbitmq

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.1.0 202,891 7/26/2019
1.0.3 3,655 4/10/2019
1.0.2 12,313 10/4/2018
1.0.1 739 10/3/2018
1.0.0 790 10/3/2018