Exemplo n.º 1
0
 /// <summary>
 /// Calls the equivalent method on the 'proxied' <see cref="QuartzScheduler" />.
 /// </summary>
 public virtual void AddCalendar(string calName, ICalendar calendar, bool replace, bool updateTriggers)
 {
     sched.AddCalendar(calName, calendar, replace, updateTriggers);
 }
Exemplo n.º 2
0
 /// <summary>
 /// Calls the equivalent method on the 'proxied' <see cref="QuartzScheduler" />.
 /// </summary>
 public virtual Task AddCalendar(string calName, ICalendar calendar, bool replace, bool updateTriggers)
 {
     return(sched.AddCalendar(calName, calendar, replace, updateTriggers));
 }