stats property

Map<String, int> get stats

Get pool statistics

Implementation

Map<String, int> get stats => {
  'available': _availableConnections.length,
  'used': _usedConnections.length,
  'total': _availableConnections.length + _usedConnections.length,
  'max': maxConnections,
};