dionjansen commented on a change in pull request #67: URL: https://github.com/apache/pulsar-dotpulsar/pull/67#discussion_r552896507
########## File path: src/DotPulsar/ConsumerOptions.cs ########## @@ -101,5 +101,16 @@ public ConsumerOptions(string subscriptionName, string topic) /// Set the topic for this consumer. This is required. /// </summary> public string Topic { get; set; } + + /// <summary> + /// Delay to wait before redelivering messages that failed to be processed. + /// When an application uses IConsumer.NegativeAcknowledge(Message), failed messages are redelivered after a fixed timeout. + /// </summary> + public int NegativeAckRedeliveryDelayMicros { get; set; } + + /// <summary> + /// Timeout of unacked messages + /// </summary> + public int AckTimeoutMillis { get; set; } Review comment: Refactored in 871dce6 ---------------------------------------------------------------- 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