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

org.opentripplanner.util.monitoring.MonitoringStoreFactory Maven / Gradle / Ivy

package org.opentripplanner.util.monitoring;


/** 
 * A singleton factory for getting a monitoring store.
 * @author novalis
 *
 */
public class MonitoringStoreFactory {

    private static MonitoringStore store;

    public static synchronized MonitoringStore getStore() {
        if (store == null) {
            store = new MonitoringStore();
        }
        return store;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy