Module org.tquadrat.foundation.base
Class SoftLazyImpl<T>
java.lang.Object
org.tquadrat.foundation.lang.internal.SoftLazyImpl<T>
- Type Parameters:
T
- The type of the cached data.
- All Implemented Interfaces:
SoftLazy<T>
@API(status=INTERNAL,
since="0.1.0")
@ClassVersion(sourceVersion="$Id: SoftLazyImpl.java 1031 2022-04-07 22:43:02Z tquadrat $")
public final class SoftLazyImpl<T>
extends Object
implements SoftLazy<T>
The implementation for the
SoftLazy
interface.- Author:
- Thomas Thrien (thomas.thrien@tquadrat.org)
- Version:
- $Id: SoftLazyImpl.java 1031 2022-04-07 22:43:02Z tquadrat $
- Since:
- 0.1.0
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final SoftLazyImpl[]
An empty array ofSoftLazyImpl<T>
objects.The initializer method.private Optional
<SoftReference<T>> The data reference. -
Constructor Summary
ConstructorsConstructorDescriptionSoftLazyImpl
(Supplier<T> initializer) Creates a newSoftLazyImpl<T>
instance. -
Method Summary
Modifier and TypeMethodDescriptionprivate final SoftReference
<T> Creates the reference to the data.final T
get()
Returns the value from this instance ofSoftLazy
.
-
Field Details
-
EMPTY_SoftLazyImpl_ARRAY
An empty array ofSoftLazyImpl<T>
objects. -
m_Initializer
The initializer method. -
m_Reference
The data reference.
-
-
Constructor Details
-
SoftLazyImpl
Creates a newSoftLazyImpl<T>
instance.- Parameters:
initializer
- The initializer method.
-
-
Method Details