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

io.github.icodegarden.commons.lang.metrics.InstanceMetrics Maven / Gradle / Ivy

There is a newer version: 2.0.0
Show newest version
package io.github.icodegarden.commons.lang.metrics;

import java.io.Closeable;
import java.util.List;

import io.github.icodegarden.commons.lang.NamedObjectReader;
import io.github.icodegarden.commons.lang.registry.RegisteredInstance;

/**
 * 
 * @author Fangfang.Xu
 *
 */
public interface InstanceMetrics extends NamedObjectReader, Closeable {

	 void setMetrics(T instance, Metrics metrics);

	 Metrics getMetrics(T instance);

	default List listMetrics(String serviceName) {
		return listNamedObjects(serviceName);
	}

	 void removeMetrics(T instance);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy