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

com.emc.mongoose.base.metrics.context.DistributedMetricsContext Maven / Gradle / Ivy

There is a newer version: 4.3.10
Show newest version
package com.emc.mongoose.base.metrics.context;

import com.emc.mongoose.base.metrics.snapshot.DistributedAllMetricsSnapshot;

import java.util.List;

public interface DistributedMetricsContext
				extends MetricsContext {

	int nodeCount();

	List nodeAddrs();

	List quantileValues();

	S lastSnapshot();
}