Apache.NMS.ActiveMQ.State.ThreadSimulator.Run C# (CSharp) Method

Run() public method

public Run ( ) : void
return void
        public virtual void Run()
        {
            throw new ApplicationException("ThreadSimulator.Run() should be overridden.");
        }

Usage Example

Exemplo n.º 1
0
 public void onResponses()
 {
     if (runnable != null)
     {
         runnable.Run();
         runnable = null;
     }
 }
ThreadSimulator