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

io.github.opensabre.rpc.loadbalance.balance.Balance Maven / Gradle / Ivy

There is a newer version: 0.1.0
Show newest version
package io.github.opensabre.rpc.loadbalance.balance;

import org.springframework.cloud.client.ServiceInstance;

import java.util.List;

/**
 * 负载均衡分发器
 * 主要为工作分发器,从一众节点中选择一个
 */
public interface Balance {
    /**
     * @param instances 所有可用实例
     * @return ServiceInstance
     */
    ServiceInstance choose(List instances);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy