Skip to content

Commit a11e32d

Browse files
committed
Fix comment
1 parent 6e95613 commit a11e32d

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

projects/RabbitMQ.Client/CreateChannelOptions.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ public sealed class CreateChannelOptions
1515
/// </summary>
1616
public bool PublisherConfirmationTrackingEnabled { get; set; } = false;
1717

18+
/// <summary>
1819
/// Set to a value greater than one to enable concurrent processing. For a concurrency greater than one <see cref="IAsyncBasicConsumer"/>
1920
/// 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.
2021
/// <see cref="IAsyncBasicConsumer"/> can handle concurrency much more efficiently due to the non-blocking nature of the consumer.
@@ -23,6 +24,7 @@ public sealed class CreateChannelOptions
2324
///
2425
/// For concurrency greater than one this removes the guarantee that consumers handle messages in the order they receive them.
2526
/// In addition to that consumers need to be thread/concurrency safe.
27+
/// </summary>
2628
public ushort? ConsumerDispatchConcurrency { get; set; } = null;
2729

2830
/// <summary>

0 commit comments

Comments
 (0)