Interface Pool
-
- All Superinterfaces:
JCAMetadata,Serializable,ValidatableMetadata
public interface Pool extends JCAMetadata, ValidatableMetadata
A Pool.- Author:
- Stefano Maestri
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classPool.TagA Tag.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CapacitygetCapacity()Get the capacityFlushStrategygetFlushStrategy()Get the flushStrategy.IntegergetInitialPoolSize()Get the initial pool sizeIntegergetMaxPoolSize()Get the maxPoolSize.IntegergetMinPoolSize()Get the minPoolSize.BooleanisFair()Get pool fairness.BooleanisPrefill()Get the prefill.BooleanisUseStrictMin()Get the useStrictMin.-
Methods inherited from interface org.jboss.jca.common.api.metadata.ValidatableMetadata
validate
-
-
-
-
Method Detail
-
getMinPoolSize
Integer getMinPoolSize()
Get the minPoolSize.- Returns:
- the minPoolSize.
-
getInitialPoolSize
Integer getInitialPoolSize()
Get the initial pool size- Returns:
- The value
-
getMaxPoolSize
Integer getMaxPoolSize()
Get the maxPoolSize.- Returns:
- the maxPoolSize.
-
isPrefill
Boolean isPrefill()
Get the prefill.- Returns:
- the prefill.
-
isUseStrictMin
Boolean isUseStrictMin()
Get the useStrictMin.- Returns:
- the useStrictMin.
-
getFlushStrategy
FlushStrategy getFlushStrategy()
Get the flushStrategy.- Returns:
- the flushStrategy.
-
getCapacity
Capacity getCapacity()
Get the capacity- Returns:
- The value
-
isFair
Boolean isFair()
Get pool fairness.- Returns:
- pool fairness.
-
-