poolHealthCheck method

Future<Result<bool>> poolHealthCheck(
  1. int poolId
)

Performs a health check on the specified connection pool.

The poolId must be a valid pool identifier. Returns true if the pool is healthy and operational, false otherwise.

Implementation

Future<Result<bool>> poolHealthCheck(int poolId) async =>
    _repository.poolHealthCheck(poolId);