dionjansen commented on a change in pull request #67: URL: https://github.com/apache/pulsar-dotpulsar/pull/67#discussion_r552528802
########## File path: src/DotPulsar/Internal/Abstractions/IMessageAcksTracker.cs ########## @@ -0,0 +1,13 @@ +namespace DotPulsar.Internal.Abstractions +{ + using DotPulsar.Abstractions; + using System.Threading; + using System.Threading.Tasks; + public interface IMessageAcksTracker<T> Review comment: cleaned up in https://github.com/apache/pulsar-dotpulsar/pull/67/commits/0119ca95e00be46184f48ab847d5353cf7e6a74f ########## File path: src/DotPulsar/Internal/Abstractions/IMessageAcksTracker.cs ########## @@ -0,0 +1,13 @@ +namespace DotPulsar.Internal.Abstractions +{ + using DotPulsar.Abstractions; + using System.Threading; + using System.Threading.Tasks; + public interface IMessageAcksTracker<T> + { + T Add(T message); + T Ack(T message); + T Nack(T message); + Task StartTracker(IConsumer consumer, CancellationToken cancellationToken); + } +} Review comment: cleaned up in 0119ca9 ---------------------------------------------------------------- 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