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 2010/11/08 16:02:09 UTC

svn commit: r1032595 - /activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/src/main/csharp/Threads/CompositeTaskRunner.cs

Author: tabish
Date: Mon Nov  8 15:02:09 2010
New Revision: 1032595

URL: http://svn.apache.org/viewvc?rev=1032595&view=rev
Log:
Fix the Wakeup method so the runner actually wakes up.

Modified:
    activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/src/main/csharp/Threads/CompositeTaskRunner.cs

Modified: activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/src/main/csharp/Threads/CompositeTaskRunner.cs
URL: http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/src/main/csharp/Threads/CompositeTaskRunner.cs?rev=1032595&r1=1032594&r2=1032595&view=diff
==============================================================================
--- activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/src/main/csharp/Threads/CompositeTaskRunner.cs (original)
+++ activemq/activemq-dotnet/Apache.NMS.Stomp/trunk/src/main/csharp/Threads/CompositeTaskRunner.cs Mon Nov  8 15:02:09 2010
@@ -116,7 +116,7 @@ namespace Apache.NMS.Stomp.Threads
                 
                 this.pending = true;
                 
-                Monitor.PulseAll(this.mutex);
+                this.waiter.Set();
             }            
         }