UnityThreading.TaskWorker.TaskWorker C# (CSharp) Method

TaskWorker() public method

public TaskWorker ( string name, TaskDistributor taskDistributor ) : System
name string
taskDistributor TaskDistributor
return System
        public TaskWorker(string name, TaskDistributor taskDistributor)
            : base(name, false)
        {
            this.TaskDistributor = taskDistributor;
            this.Dispatcher = new Dispatcher(false);
        }