Skip to content

Commit 6ed209e

Browse files
Merge pull request #774 from danielmarbach/stop
Drop unneeded shutdown (cherry picked from commit dccb725)
1 parent 197086a commit 6ed209e

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
@@ -17,11 +17,6 @@ public void Quiesce()
1717
IsShutdown = true;
1818
}
1919

20-
public void Shutdown()
21-
{
22-
workService.Stop();
23-
}
24-
2520
public void Shutdown(IModel model)
2621
{
2722
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
@@ -21,11 +21,6 @@ public void Quiesce()
2121
IsShutdown = true;
2222
}
2323

24-
public void Shutdown()
25-
{
26-
this.workService.StopWork();
27-
}
28-
2924
public void Shutdown(IModel model)
3025
{
3126
this.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
@@ -72,8 +72,6 @@ void HandleModelShutdown(IBasicConsumer consumer,
7272

7373
void Quiesce();
7474

75-
void Shutdown();
76-
7775
void Shutdown(IModel model);
7876
}
7977
}

0 commit comments

Comments
 (0)