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

com.venky.core.util.ObjectHolder Maven / Gradle / Ivy

The newest version!
package com.venky.core.util;

public class ObjectHolder {
    T object;

    public ObjectHolder(T o){
        set(o);
    }

    public T get() {
        synchronized (this) {
            return object;
        }
    }

    public void set(T object) {
        synchronized (this){
            this.object = object;
            this.notifyAll();
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy