Interface Simulation

All Known Implementing Classes:
CashierSharingSim, FirstComeFirstServedSim, ShortestJobFirstSim

public interface Simulation


Method Summary
 void runStep()
          Runs one step of simulation time.
 

Method Detail

runStep

void runStep()
Runs one step of simulation time. In your application class, you will call this method repeatedly in a loop; when you have run the desired number of steps, you will report the aggregate data from the SampleManager you passed in to the constructor. For specifics about what occurs in one step of simulation time, refer to the assignment.