Exemplo n.º 1
0
        /// <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);
        }
Exemplo n.º 2
0
        /// <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);
        }
Exemplo n.º 3
0
        /// <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);
        }