/// <summary> /// Raises the <see cref="E:CodeSmith.Core.Scheduler.JobManager.JobManagerStopping"/> event. /// </summary> /// <param name="e">The <see cref="CodeSmith.Core.Scheduler.JobEventArgs"/> instance containing the event data.</param> private void OnJobManagerStopping(JobEventArgs e) { if (JobManagerStopping == null) return; JobManagerStopping(this, e); }
/// <summary> /// Raises the <see cref="E:CodeSmith.Core.Scheduler.JobManager.JobStarting"/> event. /// </summary> /// <param name="e">The <see cref="CodeSmith.Core.Scheduler.JobEventArgs"/> instance containing the event data.</param> internal void OnJobStarting(JobEventArgs e) { if (JobStarting == null) return; JobStarting(this, e); }
/// <summary> /// Raises the <see cref="E:CodeSmith.Core.Scheduler.JobManager.JobManagerStarted"/> event. /// </summary> /// <param name="e">The <see cref="CodeSmith.Core.Scheduler.JobEventArgs"/> instance containing the event data.</param> private void OnJobManagerStarted(JobEventArgs e) { if (JobManagerStarted == null) return; JobManagerStarted(this, e); }