com.alachisoft.ncache.common.monitoring.MetricsMonitor 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;
import Alachisoft.NCache.Common.Exceptions.ManagementException;
import Alachisoft.NCache.Common.Exceptions.TimeoutException;
import com.alachisoft.ncache.runtime.exceptions.SecurityException;
import java.io.UnsupportedEncodingException;
public interface MetricsMonitor {
boolean getIsConnected();
void PublishMetadata(String sessionId, String version, ClientMetaData cacheMeta) throws Exception;
void PublishMetadata(String sessionId, CounterMetadataCollection counterMeta) throws Exception;
int PublishData(String session, CounterDataCollection data) throws Exception;
}