AssemblyCSharp.Scheduler.DoSchedule C# (CSharp) Method

DoSchedule() private method

private DoSchedule ( ScheduledAction scheduledAction ) : void
scheduledAction ScheduledAction
return void
        private void DoSchedule(ScheduledAction scheduledAction)
        {
            lock (_lock)
            {
            var predecessor = TryFindPredecessor(scheduledAction, startWith: _first);
            MoveBehind(scheduledAction, predecessor);
            }
        }