Inheritance: IExecutorThread, IDisposable
        public IExecutorThread Create(IExecutor executor, RunData data, IThreadStarter starter)
        {
            IExecutorThread thread = new ExecutorThreadImpl(executor, data);

            starter.OnStarted(thread);
            return(thread);
        }
 public IExecutorThread Create(IExecutor executor, RunData data, IThreadStarter starter)
 {
     IExecutorThread thread = new ExecutorThreadImpl(executor, data);
     starter.OnStarted(thread);
     return thread;
 }