Esempio n. 1
0
 /**
  * This method reschedules this object in the simulator kernel "simulator" at time slot "time".
  * The effect should be that "simulator" shoud call the act method of this object when the kernel
  * clock has reached "time".
  */
 public void reschedule(Kernel simulator, double time) {
   simulator.reschedule(this, time);
 }