Example #1
0
 public Feedback(ProcessLoad processLoad) : base(processLoad)
 {
     this.LevelOneQueue   = new Queue <Process>();
     this.LevelTwoQueue   = new Queue <Process>();
     this.LevelThreeQueue = new Queue <Process>();
     this.LevelFourQueue  = new List <Process>();
 }
Example #2
0
 public Scheduler(ProcessLoad processLoad)
 {
     this.ProcessLoad = processLoad.DeepCopy();
 }
Example #3
0
 public RoundRobin(ProcessLoad processLoad, int runtime) : base(processLoad)
 {
     this.ProcessesRunning = new Queue <Process>();
     this.ProcessRunTime   = runtime;
 }
Example #4
0
 public ShortestRemainingTime(ProcessLoad processLoad)
     : base(processLoad)
 {
     this.ProcessesRunning = new List <Process>();
 }
Example #5
0
 public FirstComeFirstServed(ProcessLoad processLoad) : base(processLoad)
 {
 }