Exemplo n.º 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));
 }
Exemplo n.º 2
0
 /// <summary>
 /// returns true if the given TriggerGroup
 /// is paused
 /// </summary>
 public Task <bool> IsTriggerGroupPaused(
     string groupName,
     CancellationToken cancellationToken = default)
 {
     return(sched.IsTriggerGroupPaused(groupName, cancellationToken));
 }