public TaskConfig(TaskId taskId, ITaskCallback callback) { this.taskId = taskId; this.callback = callback; }
public TaskInfo(MasterTaskType type, TaskCompletion result, TaskId taskid) { this.type = type; this.result = result; this.taskid = taskid; }
public TaskConfig(TaskId taskId, ITaskCallback callback, User user) { this.taskId = taskId; this.callback = callback; this.user = user; }