io.ebeaninternal.server.profile.TimedProfileLocationRegistry Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ebean Show documentation
Show all versions of ebean Show documentation
composite of common runtime dependencies for all platforms
package io.ebeaninternal.server.profile;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
/**
* Global registry of the TimedProfileLocation instances created.
*/
public class TimedProfileLocationRegistry {
private static final List list = Collections.synchronizedList(new ArrayList<>());
/**
* Register the timed profile location instance.
*/
public static void register(TimedProfileLocation location) {
list.add(location);
}
/**
* Return all the registered timed locations.
*/
public static List registered() {
return list;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy