public static GenericTask WithPosExecuteProcess(this GenericTask obj, Action <Bundle, GenericTask> pos) { obj.PostExecuteAction = pos; return(obj); }
public static GenericTask WithBackGroundProcess(this GenericTask obj, Action <Bundle, GenericTask> back) { obj.RunInBackgroundAction = back; return(obj); }
public static GenericTask WithPreExecuteProcess(this GenericTask obj, Action <Bundle> pre) { obj.PreExecuteAction = pre; return(obj); }