endBatch static method

void endBatch()

Implementation

static void endBatch() {
  _batchLevel--;
  if (_batchLevel <= 0) {
    _batchLevel = 0;
    for (var pod in _batchedPods) {
      pod.notify();
    }
    _batchedPods.clear();
  }
}