Class LazyCachingSupplier<T>

java.lang.Object
org.linkki.util.LazyCachingSupplier<T>
All Implemented Interfaces:
Supplier<T>

@Deprecated(since="2.0") public class LazyCachingSupplier<T> extends Object implements Supplier<T>
Deprecated.
Since 2.0, use LazyReference instead
A Supplier that wraps another Supplier which gets called only once upon the first call to get(); afterwards the value is cached.