Author: jgomes
Date: Tue May 27 15:00:20 2008
New Revision: 660739

URL: http://svn.apache.org/viewvc?rev=660739&view=rev
Log:
Added IsStarted property to IStartable interface.
Fixes [AMQNET-86]. (See https://issues.apache.org/activemq/browse/AMQNET-86)

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

Modified: 
activemq/activemq-dotnet/Apache.NMS.MSMQ/trunk/src/main/csharp/Connection.cs
URL: 
http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS.MSMQ/trunk/src/main/csharp/Connection.cs?rev=660739&r1=660738&r2=660739&view=diff
==============================================================================
--- 
activemq/activemq-dotnet/Apache.NMS.MSMQ/trunk/src/main/csharp/Connection.cs 
(original)
+++ 
activemq/activemq-dotnet/Apache.NMS.MSMQ/trunk/src/main/csharp/Connection.cs 
Tue May 27 15:00:20 2008
@@ -41,8 +41,20 @@
         {
             CheckConnected();
         }
-                
-        /// <summary>
+
+               /// <summary>
+               /// This property determines if the asynchronous message 
delivery of incoming
+               /// messages has been started for this connection.
+               /// </summary>
+               public bool IsStarted
+               {
+                       get
+                       {
+                               return true;
+                       }
+               }
+
+               /// <summary>
         /// Stop message delivery for this connection.
         /// </summary>
         public void Stop()


Reply via email to