pulsar-client-dotnet
pulsar-client-dotnet copied to clipboard
Apache Pulsar native client for .NET (C#/F#/VB)
Hello, thanks for your contribution,i found dead lock when i enable the retry option and call "isConnected" multiple times. And I have found the code that may potentially cause a...
Please add support for cluster-level auto failover similar to Java client. Related information: [Cluster Level Fail Over PIP-121](https://github.com/apache/pulsar/issues/13315) [Java Client MR](https://github.com/apache/pulsar/pull/13316)
Hi, we have a bug, that (at least for enums) we thought was fixed. If we use the same class, enum or record in different fields of a message like...
Hi Lanayx, Thanhs for this great library to connect with a Pulsar cluster and make integrating this in .net so easy. Actually we have some issues while there are connection...
Reference: https://github.com/apache/pulsar/pull/4299 API: https://github.com/apache/pulsar/blob/master/pulsar-client-api/src/main/java/org/apache/pulsar/client/api/ConsumerBuilder.java#L397-L401
Hi @Lanayx Thanks for making contributions to [pulsar-client-dotnet](https://github.com/fsprojects/pulsar-client-dotnet)! To show features supported by [pulsar-client-dotnet](https://github.com/fsprojects/pulsar-client-dotnet) to users more clearly, we (+@RobertIndie) have added both `code` and `doc` info to the [Pulsar...
Producer can batch messages with SendAndForgetAsync, but has no way to flush. Example: ``` foreach (var message in messages) { await producer.SendAndForgetAsync(message); } await producer.FlushAsync() ```
Dear Author, I am currently utilizing the BatchReceiveAsync method in my project, and I've encountered an issue where the number of messages received exceeds the limit set by BatchReceivePolicy.maxNumMessages. Despite...
Check if the length of the received messages exceeds maxNumMessages
Table View is missing ForEachAndListen. I'd like to be able to subscribe to table view changes.