Interface: Base2art.Threading.ILazy<T>

An interface that represents a class that invokes a method to create a value one and only one time, in a thread-safe manner. Similar to the System.Lazy`1

Properties

IsValueCreated

Gets a value indicating that the lazy value has been created.


Value

Gets the item from the backing source.

Methods

Reset

Calling this method will allow you to get the value again but without a cache.