/// <summary> /// Adds an job to the end of the jobs queue. /// </summary> /// <param name="j">The job to be added to the end of the jobs queue.</param> public void AddJob(Job j) { _jobDispatcher.AddJob(j); }