Class CachingObjectCreator<T>
- java.lang.Object
 - 
- org.apache.tapestry5.commons.internal.util.LockSupport
 - 
- org.apache.tapestry5.ioc.internal.services.CachingObjectCreator<T>
 
 
 
- 
- All Implemented Interfaces:
 ObjectCreator<T>
public class CachingObjectCreator<T> extends LockSupport implements ObjectCreator<T>
AnObjectCreatorthat delegates to anotherObjectCreatorand caches the result. 
- 
- 
Constructor Summary
Constructors Constructor Description CachingObjectCreator(ObjectCreator<T> delegate) 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description TcreateObject()Create and return the object.- 
Methods inherited from class org.apache.tapestry5.commons.internal.util.LockSupport
acquireReadLock, downgradeWriteLockToReadLock, releaseReadLock, releaseWriteLock, takeWriteLock, upgradeReadLockToWriteLock 
 - 
 
 - 
 
- 
- 
Constructor Detail
- 
CachingObjectCreator
public CachingObjectCreator(ObjectCreator<T> delegate)
 
 - 
 
- 
Method Detail
- 
createObject
public T createObject()
Description copied from interface:ObjectCreatorCreate and return the object. In some limited circumstances, the implementation may cache the result, returning the same object for repeated calls.- Specified by:
 createObjectin interfaceObjectCreator<T>
 
 - 
 
 -