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

org.metricssampler.resources.SharedResource Maven / Gradle / Ivy

The newest version!
package org.metricssampler.resources;

import java.util.Map;

/**
 * A resource that can be used by multiple components.
 */
public interface SharedResource {
	void shutdown();
	void startup();
	Map getStats();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy