summaryrefslogtreecommitdiff
path: root/dotnet/Qpid.Client/Client/AmqChannel.cs
diff options
context:
space:
mode:
authorRobert Greig <rgreig@apache.org>2007-01-10 12:50:37 +0000
committerRobert Greig <rgreig@apache.org>2007-01-10 12:50:37 +0000
commitdc368b6d0483b85b9a056e2e6373a05e3c94f1da (patch)
treed81e96819a17fa73b97daa78af9bbadc6cb2ab49 /dotnet/Qpid.Client/Client/AmqChannel.cs
parentc83392f59635af07757f15440c7ded9d78a2edbe (diff)
downloadqpid-python-dc368b6d0483b85b9a056e2e6373a05e3c94f1da.tar.gz
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@494801 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'dotnet/Qpid.Client/Client/AmqChannel.cs')
-rw-r--r--dotnet/Qpid.Client/Client/AmqChannel.cs8
1 files changed, 8 insertions, 0 deletions
diff --git a/dotnet/Qpid.Client/Client/AmqChannel.cs b/dotnet/Qpid.Client/Client/AmqChannel.cs
index ab598b4b27..528fa96924 100644
--- a/dotnet/Qpid.Client/Client/AmqChannel.cs
+++ b/dotnet/Qpid.Client/Client/AmqChannel.cs
@@ -608,6 +608,14 @@ namespace Qpid.Client
dispatcherThread.Start();
}
+ internal void Stop()
+ {
+ if (_dispatcher != null)
+ {
+ _dispatcher.StopDispatcher();
+ }
+ }
+
internal void RegisterConsumer(string consumerTag, IMessageConsumer consumer)
{
_consumers[consumerTag] = consumer;