Exemple #1
0
 public TaskInfo(MasterTaskType type, TaskCompletion result, TaskId taskid, User user)
 {
     this.type   = type;
     this.result = result;
     this.taskid = taskid;
     this.user   = user;
 }
Exemple #2
0
 void IMasterApplication.OnTaskComplete(MasterTaskType type, TaskCompletion result, int userId)
 {
     // ignore these in the default application
 }
Exemple #3
0
 void IMasterApplication.OnTaskStart(MasterTaskType type, int userId)
 {
     // ignore these in the default application
 }
Exemple #4
0
 public TaskInfo(MasterTaskType type, TaskCompletion result, TaskId taskid)
 {
     this.type   = type;
     this.result = result;
     this.taskid = taskid;
 }