public IDisposable ScheduleJob(Job job, int timems) { return ExecutionFiber.Schedule(() => this.ProcessJob(job), timems); }
public void ProcessJob(Job job) { if (job == null) { return; } job.Run(this); }