File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
projects/client/RabbitMQ.Client/src/client/impl Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ class WorkPool
43
43
readonly ConcurrentQueue < Work > _workQueue ;
44
44
readonly CancellationTokenSource _tokenSource ;
45
45
readonly ModelBase _model ;
46
- CancellationTokenRegistration _tokenRegistration ;
46
+ readonly CancellationTokenRegistration _tokenRegistration ;
47
47
volatile TaskCompletionSource < bool > _syncSource = new TaskCompletionSource < bool > ( TaskCreationOptions . RunContinuationsAsynchronously ) ;
48
48
private Task _worker ;
49
49
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ class WorkPool
41
41
{
42
42
readonly ConcurrentQueue < Action > _actions ;
43
43
readonly CancellationTokenSource _tokenSource ;
44
- CancellationTokenRegistration _tokenRegistration ;
44
+ readonly CancellationTokenRegistration _tokenRegistration ;
45
45
volatile TaskCompletionSource < bool > _syncSource = new TaskCompletionSource < bool > ( TaskCreationOptions . RunContinuationsAsynchronously ) ;
46
46
private Task _worker ;
47
47
You can’t perform that action at this time.
0 commit comments