예제 #1
0
 public LoopService(LoopTimeService loopTimeService, IEnumerable <IUpdateable> updateables)
 {
     this.loopTimeService = loopTimeService;
     this.updateables     = updateables.ToArray();
     Log.Debug(Stopwatch.IsHighResolution ? "Using high resolution loop timer for loop operations..." : "Using system time for loop operations...");
 }
예제 #2
0
 public SchedulerService(LoopTimeService loopTimeService)
 {
     this.loopTimeService = loopTimeService;
 }