ExistsTaskRecordForId() public static method

public static ExistsTaskRecordForId ( string id, TaskType type ) : bool
id string
type TaskType
return bool
Esempio n. 1
0
 public static void EnsureTaskRecord(string id, TaskType type)
 {
     if (Scheduler.ExistsTaskRecordForId(id, type) == false)
     {
         GenUtils.LogMsg("status", "MaybeCreateTaskRecord: creating task for " + id, null);
         Scheduler.InitTaskForId(id, type);
     }
 }