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

io.rsocket.loadbalance.WeightedStats Maven / Gradle / Ivy

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