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();
             }            
         }
 


Reply via email to