/// <summary>
 /// Acknowledge the consumption of all the messages in the topic up to and including the provided message.
 /// </summary>
 public static async ValueTask AcknowledgeCumulative(this IConsumer consumer, IMessage message, CancellationToken cancellationToken = default)
 => await consumer.AcknowledgeCumulative(message.MessageId, cancellationToken).ConfigureAwait(false);