- Type Parameters:
T
- The type of the cached data.
- All Known Implementing Classes:
SoftLazyImpl
@ClassVersion(sourceVersion="$Id: SoftLazy.java 1060 2023-09-24 19:21:40Z tquadrat $")
@API(status=STABLE,
since="0.0.5")
public sealed interface SoftLazy<T>
permits SoftLazyImpl<T>
Instances of the class
The initializer method that is provided to
SoftLazy
allow to lazy load data that may be
needed more than once, but not permanently. An example might be data that
is needed during the startup phase of a program, but never again later.The initializer method that is provided to
use(Supplier)
must return the same result for each invocation, and this may not be
null
.- Author:
- Thomas Thrien (thomas.thrien@tquadrat.org)
- Version:
- $Id: SoftLazy.java 1060 2023-09-24 19:21:40Z tquadrat $
- Since:
- 0.0.5
-
Method Summary
-
Method Details
-
get
Returns the value from this instance ofSoftLazy
.- Returns:
- The value.
-
use
Creates an instance ofSoftLazy
.- Type Parameters:
D
- The type of the cached data.- Parameters:
initializer
- The initializer method.- Returns:
- The new instance of
SoftLazy
.
-