dionjansen commented on a change in pull request #47: URL: https://github.com/apache/pulsar-dotpulsar/pull/47#discussion_r446243639
########## File path: src/DotPulsar/Abstractions/IConsumer.cs ########## @@ -106,5 +106,15 @@ public interface IConsumer : IAsyncDisposable /// Unsubscribe the consumer. /// </summary> ValueTask Unsubscribe(CancellationToken cancellationToken = default); + + /// <summary> + /// Redeliver the pending messages that were pushed to this consumer that are not yet acknowledged. + /// </summary> + ValueTask RedeliverUnacknowledgedMessages(List<MessageId> messageIds, CancellationToken cancellationToken); Review comment: Done ---------------------------------------------------------------- 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