commit | 606beccf903e9178ba14b890d951900c3deb5d11 | [log] [tgz] |
---|---|---|
author | Daniel Blankensteiner <db@vmail.dk> | Fri Nov 12 15:59:28 2021 +0100 |
committer | Daniel Blankensteiner <db@vmail.dk> | Fri Nov 12 15:59:28 2021 +0100 |
tree | 3493e0073ab9c2c45f9c6fadabbf33686618b2c2 | |
parent | f9d216ece7c1dcae05c6dc7b0246c64c0faa7bde [diff] |
Make ready for release 2.0.1 (only the version number changed. Something went wrong (in the .NET 6 target) when building the NuGet package for release 2.0.0)
# DotPulsar
The official .NET client library for Apache Pulsar.
DotPulsar is written entirely in C# and implements Apache Pulsar's binary protocol.
Have a look at the changelog.
Let's take a look at a “Hello world” example, where we first produce a message and then consume it.
First, we need a Pulsar setup. Have a look here to see how to setup a local standalone Pulsar instance. Install the NuGet package DotPulsar and copy/paste the code below (you will be needing using declarations for ‘DotPulsar’ and ‘DotPulsar.Extensions’).
const string myTopic = "persistent://public/default/mytopic"; await using var client = PulsarClient.Builder() .Build(); //Connecting to pulsar://localhost:6650 var producer = client.NewProducer() .Topic(myTopic) .Create(); _ = await producer.Send(Encoding.UTF8.GetBytes("Hello World")); var consumer = client.NewConsumer() .SubscriptionName("MySubscription") .Topic(myTopic) .Create(); await foreach (var message in consumer.Messages()) { Console.WriteLine("Received: " + Encoding.UTF8.GetString(message.Data.ToArray())); await consumer.Acknowledge(message); }
For a more in-depth tour of the API, please visit the Wiki.
Help prioritizing the roadmap is most welcome, so please reach out and tell us what you want and need.
Apache Pulsar has a Slack instance and there you'll find us in the #dev-dotpulsar channel. Just waiting for you to pop by :-)
We use SemVer for versioning. For the versions available, see the tags on this repository.
See also the list of contributors who participated in this project.
This project is licensed under the Apache License Version 2.0 - see the LICENSE file for details.