All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.zerkseez.reflection.Cache Maven / Gradle / Ivy

package com.github.zerkseez.reflection;

import java.util.function.Supplier;

public class Cache {
    private final Object lock;
    private final Supplier supplier;
    private volatile boolean cached = false;
    private T value = null;

    public Cache(final Object lock, final Supplier supplier) {
        this.lock = lock;
        this.supplier = supplier;
    }

    public T get() {
        if (!cached) {
            synchronized (lock) {
                if (!cached) {
                    value = supplier.get();
                    cached = true;
                }
            }
        }
        return value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy