getQueueStats method

Map<String, dynamic> getQueueStats()

Get queue statistics

Implementation

Map<String, dynamic> getQueueStats() {
  return {
    'size': _outboundQueue.size,
    'dropped': _outboundQueue.totalDropped,
    'expired': _outboundQueue.totalExpired,
    'byPriority': _outboundQueue.getCountByPriority(),
  };
}