recordQueueDepth method

void recordQueueDepth(
  1. int depth
)

Record queue depth snapshot

Implementation

void recordQueueDepth(int depth) {
  _queueDepthHistory.add(
    _QueueDepthSnapshot(
      timestamp: DateTime.now(),
      depth: depth,
    ),
  );

  if (_queueDepthHistory.length > _maxDepthSnapshots) {
    _queueDepthHistory.removeFirst();
  }
}