commit | 4632218db733a19117c89884bd0445027d7f5589 | [log] [tgz] |
---|---|---|
author | entvex <1580435+entvex@users.noreply.github.com> | Wed Sep 13 15:00:12 2023 +0200 |
committer | GitHub <noreply@github.com> | Wed Sep 13 15:00:12 2023 +0200 |
tree | b6a211907928da282b732a0145efedba500de104 | |
parent | 2a96063c9754ebcce7acf0311792e213f1cf0155 [diff] |
Consumer and Reader do not throw FaultedException as excepted. (#176) The Consumer and Reader didn't throw FaultedException in two scenarios where it should. Consumer 1: After the initial setup of the DotPulsar client where it can't connect to the cluster. Creating a consumer and using Receive didn't produce a ConsumerFaultedException as it should. 2: After the initial setup of the DotPulsar client where it can't connect to the cluster and is in a faulted state. Creating a consumer and using Receive didn't produce a ConsumerFaultedException as it should. Reader 1: After the initial setup of the DotPulsar client where it can't connect to the cluster. Creating a reader and using Receive didn't produce a ReaderFaultedException as it should. 2: After the initial setup of the DotPulsar client where it can't connect to the cluster and is in a faulted state. Creating a reader and using Receive didn't produce a ReaderFaultedException as it should. All the scenarios are fixed, and tests are written in ConsumerTests.cs ReaderTests.cs confirming the fix. Co-authored-by: David Jensen <djn@danskecommodities.com>
# 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. Note that the topic and subscription will be created if they don’t exist.
First, we need a Pulsar setup. See Pulsar docs for how to set up a local standalone Pulsar instance.
Install the NuGet package DotPulsar and run the follow code example:
using DotPulsar; using DotPulsar.Extensions; const string myTopic = "persistent://public/default/mytopic"; // connecting to pulsar://localhost:6650 await using var client = PulsarClient.Builder().Build(); // produce a message await using var producer = client.NewProducer(Schema.String).Topic(myTopic).Create(); await producer.Send("Hello World"); // consume messages await using var consumer = client.NewConsumer(Schema.String) .SubscriptionName("MySubscription") .Topic(myTopic) .InitialPosition(SubscriptionInitialPosition.Earliest) .Create(); await foreach (var message in consumer.Messages()) { Console.WriteLine($"Received: {message.Value()}"); await consumer.Acknowledge(message); }
For a more in-depth tour of the API, please visit the Wiki.
For a horizontal comparison with more language-specific clients, see Client Feature Matrix.
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.
We use SemVer for versioning. For the versions available, see the tags on this repository.
Contributions are welcomed and greatly appreciated. See also the list of contributors who participated in this project. Read the CONTRIBUTING guide for how to participate.
If your contribution adds Pulsar features for C# clients, you need to update both the Pulsar docs and the Client Feature Matrix. See Contribution Guide for more details.
This project is licensed under Apache License, Version 2.0.