Author: jgomes
Date: Wed Mar 12 23:12:31 2014
New Revision: 1576988

URL: http://svn.apache.org/r1576988
Log:
Add IDisposable interface to IDestination.
Fixes [AMQNET-473]. (See https://issues.apache.org/jira/browse/AMQNET-473)
Set the NMS version dependency to 1.7.0 for trunk development.

Modified:
    activemq/activemq-dotnet/Apache.NMS.AMQP/trunk/nant.build
    
activemq/activemq-dotnet/Apache.NMS.AMQP/trunk/src/main/csharp/Destination.cs

Modified: activemq/activemq-dotnet/Apache.NMS.AMQP/trunk/nant.build
URL: 
http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS.AMQP/trunk/nant.build?rev=1576988&r1=1576987&r2=1576988&view=diff
==============================================================================
--- activemq/activemq-dotnet/Apache.NMS.AMQP/trunk/nant.build (original)
+++ activemq/activemq-dotnet/Apache.NMS.AMQP/trunk/nant.build Wed Mar 12 
23:12:31 2014
@@ -22,7 +22,7 @@
     <property name="basedir"                   
value="${project::get-base-directory()}" />
     <property name="project.name"              value="Apache.NMS.AMQP" />
     <property name="project.group"             value="org.apache.activemq" />
-    <property name="project.version"           value="1.6.0" 
unless="${property::exists('project.version')}" />
+    <property name="project.version"           value="1.7.0" 
unless="${property::exists('project.version')}" />
     <property name="project.release.type"      value="SNAPSHOT" 
unless="${property::exists('project.release.type')}" />
     <property name="project.short_description" value="Apache NMS for AMQP 
Class Library" />
     <property name="project.description"       value="Apache NMS for AMQP 
Class Library (.Net Messaging Library Implementation): An implementation of the 
NMS API for AMQP using Apache QPID and Proton" />

Modified: 
activemq/activemq-dotnet/Apache.NMS.AMQP/trunk/src/main/csharp/Destination.cs
URL: 
http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS.AMQP/trunk/src/main/csharp/Destination.cs?rev=1576988&r1=1576987&r2=1576988&view=diff
==============================================================================
--- 
activemq/activemq-dotnet/Apache.NMS.AMQP/trunk/src/main/csharp/Destination.cs 
(original)
+++ 
activemq/activemq-dotnet/Apache.NMS.AMQP/trunk/src/main/csharp/Destination.cs 
Wed Mar 12 23:12:31 2014
@@ -100,6 +100,12 @@ namespace Apache.NMS.Amqp
             qpidAddress = new Org.Apache.Qpid.Messaging.Address(other.Address);
         }
 
+               /**
+                * Dispose of the destination object.
+                */
+               public void Dispose()
+               {
+               }
 
         /**
          * Path property
@@ -195,7 +201,6 @@ namespace Apache.NMS.Amqp
             return result;
         }
 
-
         /**
          * Qpid Address accessor
          * Name property


Reply via email to