ackAll method

void ackAll(
  1. int ackid,
  2. int time
)

Implementation

void ackAll(int ackid, int time) {
  for (var processor in processors) {
    processor.ackReceived(ackId, startTime, time);
  }
}