io.rsocket.loadbalance.WeightedStats Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rsocket-core Show documentation
Show all versions of rsocket-core Show documentation
Core functionality for the RSocket library
package io.rsocket.loadbalance;
/**
* Representation of stats used by the {@link WeightedLoadbalanceStrategy}
*
* @since 1.1
*/
public interface WeightedStats {
double higherQuantileLatency();
double lowerQuantileLatency();
int pending();
double predictedLatency();
double weightedAvailability();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy