public virtual Task NotifyConsumed <T>(ConsumeContext <T> context, TimeSpan duration, string consumerType) where T : class { IsDelivered = true; context.LogConsumed(duration, consumerType); return(_receiveObserver.PostConsume(context, duration, consumerType)); }
Task IReceiveObserver.PostConsume <T>(ConsumeContext <T> context, TimeSpan duration, string consumerType) { return(_receiveObserver.PostConsume(context, duration, consumerType)); }