Start() public method

This function is called by Zinger Explorer whenever a Zing Processes is created.
public Start ( int processId ) : void
processId int
return void
 /// <summary>
 /// This function is called by Zinger whenever a new process is created.
 /// Add the new created process at the end of RR list.
 /// </summary>
 /// <param name="processId"> process Id of the newly created process</param>
 public override void Start(ZingerSchedulerState ZSchedulerState, int processId)
 {
     var SchedState = ZSchedulerState as RoundRobinDBSchedulerState;
     ZSchedulerState.Start(processId);
     //add the process to the enabled processes list
     SchedState.enabledProcesses.Add(processId);
 }
 /// <summary>
 /// This function is called by Zinger whenever a new process is created.
 /// </summary>
 /// <param name="processId"> process Id of the newly created process</param>
 public override void Start(ZingerSchedulerState ZSchedulerState, int processId)
 {
     var schedState = (ZSchedulerState as RandomDBSchedulerState);
     ZSchedulerState.Start(processId);
     schedState.EnabledProcesses.Add(processId);
     schedState.setOfProcesses.Add(processId);
 }