com.netflix.dyno.connectionpool.HealthTracker Maven / Gradle / Ivy
package com.netflix.dyno.connectionpool;
import com.netflix.dyno.connectionpool.exception.DynoException;
/**
* Base interface for classes that track error rates for the connection pool.
*
* @param the client type
*/
public interface HealthTracker {
void trackConnectionError(HostConnectionPool hostPool, DynoException e);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy