status method

  1. @override
CrdbPoolStatus status()
override

Get the current debug information of the pool's internal state.

Implementation

@override
CrdbPoolStatus status() {
  return CrdbPoolStatus(
    nodes: _nodes.map((n) => n.status()).toList(),
  );
}