com.alachisoft.ncache.common.monitoring.ICollector Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nc-common Show documentation
Show all versions of nc-common Show documentation
Internal package of Alachisoft.
package com.alachisoft.ncache.common.monitoring;
public interface ICollector
{
String getCouneterName();
void setCouneterName(String value);
String getName();
void setName(String value);
double getLastValue();
void setLastValue(double value);
int getEventId();
double Collectstats();
}