Inheritance: ITaskSupervisor
Exemplo n.º 1
0
 public Scope()
 {
     _supervisor = new TaskSupervisor(this);
 }
Exemplo n.º 2
0
        public TaskScope(string tag)
        {
            _participant = new TaskParticipant(tag);

            _supervisor = new TaskSupervisor(tag, this);
        }
Exemplo n.º 3
0
        public TaskScope(string tag, Action remove)
        {
            _participant = new TaskParticipant(tag, remove);

            _supervisor = new TaskSupervisor(tag, this);
        }
Exemplo n.º 4
0
 public Scope()
 {
     _supervisor = new TaskSupervisor(this);
 }
Exemplo n.º 5
0
        public TaskScope(string tag, Action remove)
        {
            _participant = new TaskParticipant(tag, remove);

            _supervisor = new TaskSupervisor(tag, this);
        }