dionjansen commented on a change in pull request #67: URL: https://github.com/apache/pulsar-dotpulsar/pull/67#discussion_r552561276
########## File path: src/DotPulsar/Internal/Abstractions/IMessageQueue.cs ########## @@ -0,0 +1,10 @@ +namespace DotPulsar.Internal.Abstractions +{ + using System; + + public interface IMessageQueue : IDequeue<MessagePackage>, IDisposable + { + void Acknowledge(MessageId obj); Review comment: Done 2edfa35 ########## File path: src/DotPulsar/Internal/Abstractions/IMessageQueue.cs ########## @@ -0,0 +1,10 @@ +namespace DotPulsar.Internal.Abstractions +{ + using System; + + public interface IMessageQueue : IDequeue<MessagePackage>, IDisposable + { + void Acknowledge(MessageId obj); + void NegativeAcknowledge(MessageId obj); + } +} Review comment: Done 2edfa35 ---------------------------------------------------------------- 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