jmx.org.apache.cassandra.service.cassandra4.FailureDetectorMBean Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of commons Show documentation
Show all versions of commons Show documentation
Common classes and utilities integrated with various projects
package jmx.org.apache.cassandra.service.cassandra4;
import javax.management.openmbean.OpenDataException;
import javax.management.openmbean.TabularData;
import java.net.UnknownHostException;
import java.util.Map;
public interface FailureDetectorMBean {
public void dumpInterArrivalTimes();
public void setPhiConvictThreshold(double phi);
public double getPhiConvictThreshold();
@Deprecated
public String getAllEndpointStates();
public String getAllEndpointStatesWithPort();
public String getEndpointState(String address) throws UnknownHostException;
@Deprecated
public Map getSimpleStates();
public Map getSimpleStatesWithPort();
public int getDownEndpointCount();
public int getUpEndpointCount();
@Deprecated
public TabularData getPhiValues() throws OpenDataException;
public TabularData getPhiValuesWithPort() throws OpenDataException;
}