Package com.zaxxer.hikari.metrics
Class PoolStats
- java.lang.Object
 - 
- com.zaxxer.hikari.metrics.PoolStats
 
 
- 
public abstract class PoolStats extends java.lang.Object- Author:
 - Brett Wooldridge
 
 
- 
- 
Constructor Summary
Constructors Constructor Description PoolStats(long timeoutMs) 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetActiveConnections()intgetIdleConnections()intgetMaxConnections()intgetMinConnections()intgetPendingThreads()intgetTotalConnections() 
 - 
 
- 
- 
Method Detail
- 
getTotalConnections
public int getTotalConnections()
 
- 
getIdleConnections
public int getIdleConnections()
 
- 
getActiveConnections
public int getActiveConnections()
 
- 
getPendingThreads
public int getPendingThreads()
 
- 
getMaxConnections
public int getMaxConnections()
 
- 
getMinConnections
public int getMinConnections()
 
 - 
 
 -