Inheritance: ITaskSupervisor
示例#1
0
 public Scope()
 {
     _supervisor = new TaskSupervisor(this);
 }
示例#2
0
        public TaskScope(string tag)
        {
            _participant = new TaskParticipant(tag);

            _supervisor = new TaskSupervisor(tag, this);
        }
示例#3
0
        public TaskScope(string tag, Action remove)
        {
            _participant = new TaskParticipant(tag, remove);

            _supervisor = new TaskSupervisor(tag, this);
        }
示例#4
0
 public Scope()
 {
     _supervisor = new TaskSupervisor(this);
 }
示例#5
0
        public TaskScope(string tag, Action remove)
        {
            _participant = new TaskParticipant(tag, remove);

            _supervisor = new TaskSupervisor(tag, this);
        }