Package org.opengrok.indexer.util
Class LazilyInstantiate<T>
java.lang.Object
org.opengrok.indexer.util.LazilyInstantiate<T>
- Type Parameters:
T
- the type of object that you're trying to lazily instantiate
- All Implemented Interfaces:
Supplier<T>
LazilyInstantiate
is a quick class to make lazily instantiating
objects easy. All you need to know for working with this class is its two
public methods: one static factory for creating the object, and another for
initiating the instantiation and retrieval of the object.
Also, another benefit is that it's thread safe, but only blocks when initially instantiating the object. After that, it stops blocking and removes unnecessary checks for whether the object is instantiated.
Here's an example of it being used for implementing a singleton:
public class Singleton
{
private static Supplier<Singleton> instance =
LazilyInstantiate.using(() -> new Singleton());
//other fields
public static getInstance()
{
instance.get();
}
//other methods
private Singleton()
{
//contructor stuff
}
}
So, here are the changes you'll need to apply in your code:
- Change the type of the lazily instantiated object to a
Supplier
of that type - Have it set to LazilyInstantiate.using() where the argument is
() -> <instantiation code>
You could also use a method reference, which, for the example above, would beSingleton::new
instead of() -> new Singleton()
- Whatever asks for the object, asks for the
Supplier
object, then.get()
-
Method Summary
Modifier and TypeMethodDescriptionget()
Executes theusing(java.util.function.Supplier)
supplier in a thread-safe manner if it has not yet been executed, and keeps the result to provide to every caller of this method.boolean
isActive()
Gets a value indicating if the instance is active and no longer technically lazy, sinceget()
has been called.static <T> LazilyInstantiate<T>
-
Method Details
-
using
-
get
Executes theusing(java.util.function.Supplier)
supplier in a thread-safe manner if it has not yet been executed, and keeps the result to provide to every caller of this method. -
isActive
public boolean isActive()Gets a value indicating if the instance is active and no longer technically lazy, sinceget()
has been called.
-