예제 #1
0
 public static GenericTask WithPosExecuteProcess(this GenericTask obj, Action <Bundle, GenericTask> pos)
 {
     obj.PostExecuteAction = pos;
     return(obj);
 }
예제 #2
0
 public static GenericTask WithBackGroundProcess(this GenericTask obj, Action <Bundle, GenericTask> back)
 {
     obj.RunInBackgroundAction = back;
     return(obj);
 }
예제 #3
0
 public static GenericTask WithPreExecuteProcess(this GenericTask obj, Action <Bundle> pre)
 {
     obj.PreExecuteAction = pre;
     return(obj);
 }