Package net.officefloor.frame.api.build
Interface ManagedObjectPoolBuilder
-
- All Known Implementing Classes:
ManagedObjectPoolBuilderImpl
public interface ManagedObjectPoolBuilder
Builder for theManagedObjectPool
.- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addThreadCompletionListener(ThreadCompletionListenerFactory threadCompletionListenerFactory)
Adds aThreadCompletionListener
.
-
-
-
Method Detail
-
addThreadCompletionListener
void addThreadCompletionListener(ThreadCompletionListenerFactory threadCompletionListenerFactory)
Adds a
ThreadCompletionListener
.This allows the
ManagedObjectPool
to cache objects toThreadLocal
instances and be notified when theThread
is complete to clean up theThreadLocal
state.- Parameters:
threadCompletionListenerFactory
-ThreadCompletionListenerFactory
.
-
-