Uses of Interface
overit.geocall.util.DAThrowingSupplier
Packages that use DAThrowingSupplier
-
Uses of DAThrowingSupplier in overit.geocall.util
Classes in overit.geocall.util that implement DAThrowingSupplierModifier and TypeClassDescriptionclassDALazy<T>DALazyis a simple in-memory caching class.
TheDALazyclass suits the caching of database calls, complex object graph building routines, and web service calls that should be cached for performance.
This implementation differs fromLazybecause it implementsDAThrowingSupplier, and can therefore raiseDAExceptions andDAValidateExceptions.Fields in overit.geocall.util declared as DAThrowingSupplierMethods in overit.geocall.util with parameters of type DAThrowingSupplierModifier and TypeMethodDescriptionfinal TDALazy.get(DAThrowingSupplier<T> supplier, T def) Returns the value retrieved from theDAThrowingSupplier.Constructors in overit.geocall.util with parameters of type DAThrowingSupplierModifierConstructorDescriptionDALazy(DAThrowingSupplier<T> supplier) Creates aDALazyobject with the definedDAThrowingSupplier.