removeAll method

void removeAll()

Implementation

void removeAll() /*volatile*/ {
  while (jobStack.isNotEmpty) {
    removeJob(jobStack.last);
  }
}