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

jmx.org.apache.cassandra.service.cassandra4.FailureDetectorMBean Maven / Gradle / Ivy

There is a newer version: 2.0.0
Show newest version
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;
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy