예제 #1
0
 public TaskInfo(MasterTaskType type, TaskCompletion result, TaskId taskid, User user)
 {
     this.type   = type;
     this.result = result;
     this.taskid = taskid;
     this.user   = user;
 }
예제 #2
0
 void IMasterApplication.OnTaskComplete(MasterTaskType type, TaskCompletion result, int userId)
 {
     // ignore these in the default application
 }
예제 #3
0
 void IMasterApplication.OnTaskStart(MasterTaskType type, int userId)
 {
     // ignore these in the default application
 }
예제 #4
0
파일: TaskInfo.cs 프로젝트: sidhoda/dnp3
 public TaskInfo(MasterTaskType type, TaskCompletion result, TaskId taskid)
 {
     this.type   = type;
     this.result = result;
     this.taskid = taskid;
 }