RobertIndie commented on a change in pull request #48: URL: https://github.com/apache/pulsar-dotpulsar/pull/48#discussion_r498644121
########## File path: src/DotPulsar/Abstractions/IPulsarClient.cs ########## @@ -35,5 +38,10 @@ public interface IPulsarClient : IAsyncDisposable /// Create a reader. /// </summary> IReader CreateReader(ReaderOptions options); + + /// <summary> + /// Get the partition topic metadata for a given topic. + /// </summary> + public Task<PartitionedTopicMetadata> GetPartitionTopicMetadata(string topic, CancellationToken cancellationToken = default); Review comment: Thanks. This is part of the API defined by the Java Client. I changed it to ValueTask. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org