File tree Expand file tree Collapse file tree 2 files changed +9
-0
lines changed
projects/client/RabbitMQ.Client/src/client/api Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -238,6 +238,7 @@ public TimeSpan ContinuationTimeout
238
238
/// Task scheduler connections created by this factory will use when
239
239
/// dispatching consumer operations, such as message deliveries.
240
240
/// </summary>
241
+ [ Obsolete ( "This scheduler is no longer used for dispatching consumer operations and will be removed in the next major version." , false ) ]
241
242
public TaskScheduler TaskScheduler { get ; set ; } = TaskScheduler . Default ;
242
243
243
244
/// <summary>
Original file line number Diff line number Diff line change @@ -128,6 +128,14 @@ public interface IConnectionFactory
128
128
/// <returns></returns>
129
129
IConnection CreateConnection ( IList < string > hostnames , String clientProvidedName ) ;
130
130
131
+ /// <summary>
132
+ /// Advanced option.
133
+ ///
134
+ /// What task scheduler should consumer dispatcher use.
135
+ /// </summary>
136
+ [ Obsolete ( "This scheduler is no longer used for dispatching consumer operations and will be removed in the next major version." , false ) ]
137
+ TaskScheduler TaskScheduler { get ; set ; }
138
+
131
139
/// <summary>
132
140
/// Amount of time protocol handshake operations are allowed to take before
133
141
/// timing out.
You can’t perform that action at this time.
0 commit comments