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

com.netflix.astyanax.connectionpool.HostStats Maven / Gradle / Ivy

There is a newer version: 3.10.2
Show newest version
package com.netflix.astyanax.connectionpool;

import java.util.Date;

public interface HostStats {

    boolean isUp();

    boolean isInRing();

    Date getTimeCreated();

    HostConnectionPool getPool();

    long getUpTime();

    long getSuccessCount();

    long getErrorCount();

    long getConnectionsClosed();

    long getConnectionsCreated();

    long getConnectionsCreateFailed();

    long getTimesUp();

    long getTimesDown();

    void setPool(HostConnectionPool pool);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy