File tree Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ public sealed class CreateChannelOptions
15
15
/// </summary>
16
16
public bool PublisherConfirmationTrackingEnabled { get ; set ; } = false ;
17
17
18
+ /// <summary>
18
19
/// Set to a value greater than one to enable concurrent processing. For a concurrency greater than one <see cref="IAsyncBasicConsumer"/>
19
20
/// 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.
20
21
/// <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
23
24
///
24
25
/// For concurrency greater than one this removes the guarantee that consumers handle messages in the order they receive them.
25
26
/// In addition to that consumers need to be thread/concurrency safe.
27
+ /// </summary>
26
28
public ushort ? ConsumerDispatchConcurrency { get ; set ; } = null ;
27
29
28
30
/// <summary>
You can’t perform that action at this time.
0 commit comments