You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by jg...@apache.org on 2008/08/05 20:04:26 UTC

svn commit: r682841 - /activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/ISession.cs

Author: jgomes
Date: Tue Aug  5 11:04:26 2008
New Revision: 682841

URL: http://svn.apache.org/viewvc?rev=682841&view=rev
Log:
Add ISession.DeleteDurableConsumer().
Fixes [AMQNET-99]. (See https://issues.apache.org/activemq/browse/AMQNET-99)

Modified:
    activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/ISession.cs

Modified: activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/ISession.cs
URL: http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/ISession.cs?rev=682841&r1=682840&r2=682841&view=diff
==============================================================================
--- activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/ISession.cs (original)
+++ activemq/activemq-dotnet/Apache.NMS/trunk/src/main/csharp/ISession.cs Tue Aug  5 11:04:26 2008
@@ -80,6 +80,12 @@
 		IMessageConsumer CreateDurableConsumer(ITopic destination, string name, string selector, bool noLocal, TimeSpan requestTimeout);
 
 		/// <summary>
+		/// Deletes a durable consumer created with CreateDurableConsumer().
+		/// </summary>
+		/// <param name="name">Name of the durable consumer</param>
+		void DeleteDurableConsumer(string name);
+
+		/// <summary>
 		/// Returns the queue for the given name
 		/// </summary>
 		IQueue GetQueue(string name);