Helios.Ops.Executors.BasicExecutor.Execute C# (CSharp) Method

Execute() public method

public Execute ( System.Action op ) : void
op System.Action
return void
        public virtual void Execute(Action op)
        {
            if (!AcceptingJobs) return;

            op();
        }

Same methods

BasicExecutor::Execute ( IList op ) : void
BasicExecutor::Execute ( IList ops, Action remainingOps ) : void
BasicExecutor::Execute ( Task task ) : void