Interface ManagedObjectPoolSourceMetaData
-
public interface ManagedObjectPoolSourceMetaData
Meta-data regarding theManagedObjectPool
.- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ManagedObjectPoolFactory
getManagedObjectPoolFactory()
Obtains theManagedObjectPoolFactory
.java.lang.Class<?>
getPooledObjectType()
Obtains the type of object expected to be pooled by thisManagedObjectPool
.ThreadCompletionListenerFactory[]
getThreadCompleteListenerFactories()
Obtains theThreadCompletionListenerFactory
instances.
-
-
-
Method Detail
-
getPooledObjectType
java.lang.Class<?> getPooledObjectType()
Obtains the type of object expected to be pooled by thisManagedObjectPool
.- Returns:
- Type of object expected to be pooled by this
ManagedObjectPool
. This may be a super type of the actual object.
-
getManagedObjectPoolFactory
ManagedObjectPoolFactory getManagedObjectPoolFactory()
Obtains theManagedObjectPoolFactory
.- Returns:
ManagedObjectPoolFactory
.
-
getThreadCompleteListenerFactories
ThreadCompletionListenerFactory[] getThreadCompleteListenerFactories()
Obtains theThreadCompletionListenerFactory
instances.- Returns:
ThreadCompletionListenerFactory
instances. May benull
if noThreadCompletionListener
instances.
-
-