poolGetState method

Future<Result<PoolState>> poolGetState(
  1. int poolId
)

Gets the current state of the specified connection pool.

The poolId must be a valid pool identifier. Returns a PoolState containing pool statistics and status information.

Implementation

Future<Result<PoolState>> poolGetState(int poolId) async =>
    _repository.poolGetState(poolId);