Inheritance: IExecutorThread, IDisposable
コード例 #1
0
        public IExecutorThread Create(IExecutor executor, RunData data, IThreadStarter starter)
        {
            IExecutorThread thread = new ExecutorThreadImpl(executor, data);

            starter.OnStarted(thread);
            return(thread);
        }
コード例 #2
-1
 public IExecutorThread Create(IExecutor executor, RunData data, IThreadStarter starter)
 {
     IExecutorThread thread = new ExecutorThreadImpl(executor, data);
     starter.OnStarted(thread);
     return thread;
 }