Esempio n. 1
0
 /// <summary>
 /// Execute the event to update the jobs.
 /// </summary>
 /// <param name="type">the type of job update.</param>
 private void OnJobUpdate(JobUpdateType type)
 {
     if (JobUpdateEvent != null)
         JobUpdateEvent(this, new JobUpdateEventArgs(type));
 }
Esempio n. 2
0
 /// <summary>
 /// Constructors.
 /// </summary>
 /// <param name="args">job update type.</param>
 public JobUpdateEventArgs(JobUpdateType args)
 {
     m_type = args;
 }