Apache.NMS.ActiveMQ.Threads.ThreadPoolExecutor.Future.Run C# (CSharp) Method

Run() public method

public Run ( ) : void
return void
            public void Run()
            {
                if(this.callback == null)
                {
                    throw new Exception("Future executed with null WaitCallback");
                }

                try
                {
                    this.callback(callbackArg);
                }
                catch
                {
                }
            }
ThreadPoolExecutor.Future