Author: jgomes
Date: Fri Sep 5 17:25:13 2008
New Revision: 692591
URL: http://svn.apache.org/viewvc?rev=692591&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/tags/1.0.0/ (props changed)
activemq/activemq-dotnet/Apache.NMS.ActiveMQ/tags/1.0.0/src/main/csharp/Connection.cs
Propchange: activemq/activemq-dotnet/Apache.NMS.ActiveMQ/tags/1.0.0/
('bugtraq:label' removed)
Propchange: activemq/activemq-dotnet/Apache.NMS.ActiveMQ/tags/1.0.0/
('bugtraq:message' removed)
Propchange: activemq/activemq-dotnet/Apache.NMS.ActiveMQ/tags/1.0.0/
('bugtraq:url' removed)
Propchange: activemq/activemq-dotnet/Apache.NMS.ActiveMQ/tags/1.0.0/
('svn:ignore' removed)
Modified:
activemq/activemq-dotnet/Apache.NMS.ActiveMQ/tags/1.0.0/src/main/csharp/Connection.cs
URL:
http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS.ActiveMQ/tags/1.0.0/src/main/csharp/Connection.cs?rev=692591&r1=692590&r2=692591&view=diff
==============================================================================
---
activemq/activemq-dotnet/Apache.NMS.ActiveMQ/tags/1.0.0/src/main/csharp/Connection.cs
(original)
+++
activemq/activemq-dotnet/Apache.NMS.ActiveMQ/tags/1.0.0/src/main/csharp/Connection.cs
Fri Sep 5 17:25:13 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)