Class DALazy<T>

java.lang.Object
overit.geocall.util.DALazy<T>
All Implemented Interfaces:
Serializable, DAThrowingSupplier<T>

public class DALazy<T> extends Object implements DAThrowingSupplier<T>
DALazy is a simple in-memory caching class.
The DALazy class suits the caching of database calls, complex object graph building routines, and web service calls that should be cached for performance.
This implementation differs from Lazy because it implements DAThrowingSupplier, and can therefore raise DAExceptions and DAValidateExceptions.
See Also: