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..."); }
public SchedulerService(LoopTimeService loopTimeService) { this.loopTimeService = loopTimeService; }