You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by ta...@apache.org on 2011/01/12 18:01:44 UTC

svn commit: r1058234 - /activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/Transport/Tcp/TcpTransport.cs

Author: tabish
Date: Wed Jan 12 17:01:43 2011
New Revision: 1058234

URL: http://svn.apache.org/viewvc?rev=1058234&view=rev
Log:
Allow the tcp transport oneway method to be overridden by a subclass.

Modified:
    activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/Transport/Tcp/TcpTransport.cs

Modified: activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/Transport/Tcp/TcpTransport.cs
URL: http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/Transport/Tcp/TcpTransport.cs?rev=1058234&r1=1058233&r2=1058234&view=diff
==============================================================================
--- activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/Transport/Tcp/TcpTransport.cs (original)
+++ activemq/activemq-dotnet/Apache.NMS.ActiveMQ/trunk/src/main/csharp/Transport/Tcp/TcpTransport.cs Wed Jan 12 17:01:43 2011
@@ -114,7 +114,7 @@ namespace Apache.NMS.ActiveMQ.Transport.
 			}
 		}
 
-		public void Oneway(Command command)
+		public virtual void Oneway(Command command)
 		{
 			lock(myLock)
 			{