Beispiel #1
0
 /// <summary>
 /// returns true if the given TriggerGroup
 /// is paused
 /// </summary>
 /// <param name="groupName"></param>
 /// <returns></returns>
 public bool IsTriggerGroupPaused(string groupName)
 {
     return(sched.IsTriggerGroupPaused(groupName));
 }
 /// <summary>
 /// returns true if the given TriggerGroup
 /// is paused
 /// </summary>
 public Task <bool> IsTriggerGroupPaused(
     string groupName,
     CancellationToken cancellationToken = default)
 {
     return(sched.IsTriggerGroupPaused(groupName, cancellationToken));
 }