コード例 #1
0
ファイル: JobManager.cs プロジェクト: khoussem/Exceptionless
        /// <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);
        }
コード例 #2
0
ファイル: JobManager.cs プロジェクト: khoussem/Exceptionless
        /// <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);
        }
コード例 #3
0
ファイル: JobManager.cs プロジェクト: khoussem/Exceptionless
        /// <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);
        }