Skip to content

Commit dccb725

Browse files
Merge pull request #774 from danielmarbach/stop
Drop unneeded shutdown
2 parents 4577442 + 24a632a commit dccb725

File tree

3 files changed

+0
-12
lines changed

3 files changed

+0
-12
lines changed

projects/client/RabbitMQ.Client/src/client/impl/AsyncConsumerDispatcher.cs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,6 @@ public void Quiesce()
1919
IsShutdown = true;
2020
}
2121

22-
public void Shutdown()
23-
{
24-
_workService.Stop();
25-
}
26-
2722
public void Shutdown(IModel model)
2823
{
2924
_workService.Stop(model);

projects/client/RabbitMQ.Client/src/client/impl/ConcurrentConsumerDispatcher.cs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,6 @@ public void Quiesce()
2222
IsShutdown = true;
2323
}
2424

25-
public void Shutdown()
26-
{
27-
_workService.StopWork();
28-
}
29-
3025
public void Shutdown(IModel model)
3126
{
3227
_workService.StopWork(model);

projects/client/RabbitMQ.Client/src/client/impl/IConsumerDispatcher.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,6 @@ void HandleModelShutdown(IBasicConsumer consumer,
6969

7070
void Quiesce();
7171

72-
void Shutdown();
73-
7472
void Shutdown(IModel model);
7573
}
7674
}

0 commit comments

Comments
 (0)