Package org.springframework.aop.target
Interface PoolingConfig
- All Known Implementing Classes:
AbstractPoolingTargetSource
,CommonsPool2TargetSource
public interface PoolingConfig
Config interface for a pooling target source.
- Author:
- Rod Johnson, Juergen Hoeller
-
Method Summary
Modifier and TypeMethodDescriptionint
Return the number of active objects in the pool.int
Return the number of idle objects in the pool.int
Return the maximum size of the pool.
-
Method Details
-
getMaxSize
int getMaxSize()Return the maximum size of the pool. -
getActiveCount
Return the number of active objects in the pool.- Throws:
UnsupportedOperationException
- if not supported by the pool
-
getIdleCount
Return the number of idle objects in the pool.- Throws:
UnsupportedOperationException
- if not supported by the pool
-