Author: jgomes
Date: Fri Sep 5 17:33:21 2008
New Revision: 692594
URL: http://svn.apache.org/viewvc?rev=692594&view=rev
Log:
Change default value for started to false.
Fixes [AMQNET-111]. (See https://issues.apache.org/activemq/browse/AMQNET-111)
Modified:
activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/ (props changed)
activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/Connection.cs
Propchange: activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/
------------------------------------------------------------------------------
--- svn:mergeinfo (added)
+++ svn:mergeinfo Fri Sep 5 17:33:21 2008
@@ -0,0 +1 @@
+/activemq/activemq-dotnet/Apache.NMS.ActiveMQ/tags/1.0.0:692591
Modified:
activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/Connection.cs
URL:
http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/Connection.cs?rev=692594&r1=692593&r2=692594&view=diff
==============================================================================
---
activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/Connection.cs
(original)
+++
activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/Connection.cs
Fri Sep 5 17:33:21 2008
@@ -44,7 +44,7 @@
private long sessionCounter = 0;
private long temporaryDestinationCounter = 0;
private long localTransactionCounter;
- private readonly AtomicBoolean started = new
AtomicBoolean(true);
+ private readonly AtomicBoolean started = new
AtomicBoolean(false);
private bool disposed = false;
public Connection(Uri connectionUri, ITransport transport,
ConnectionInfo info)