From a11e32d0dde2eb8caa433405e189546dfb6b9b68 Mon Sep 17 00:00:00 2001 From: Daniel Marbach Date: Fri, 4 Oct 2024 11:28:22 +0200 Subject: [PATCH] Fix comment --- projects/RabbitMQ.Client/CreateChannelOptions.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/projects/RabbitMQ.Client/CreateChannelOptions.cs b/projects/RabbitMQ.Client/CreateChannelOptions.cs index a3627e7fd..17a9d6105 100644 --- a/projects/RabbitMQ.Client/CreateChannelOptions.cs +++ b/projects/RabbitMQ.Client/CreateChannelOptions.cs @@ -15,6 +15,7 @@ public sealed class CreateChannelOptions /// public bool PublisherConfirmationTrackingEnabled { get; set; } = false; + /// /// Set to a value greater than one to enable concurrent processing. For a concurrency greater than one /// will be offloaded to the worker thread pool so it is important to choose the value for the concurrency wisely to avoid thread pool overloading. /// can handle concurrency much more efficiently due to the non-blocking nature of the consumer. @@ -23,6 +24,7 @@ public sealed class CreateChannelOptions /// /// For concurrency greater than one this removes the guarantee that consumers handle messages in the order they receive them. /// In addition to that consumers need to be thread/concurrency safe. + /// public ushort? ConsumerDispatchConcurrency { get; set; } = null; ///