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

io.github.opensabre.rpc.loadbalance.router.Router Maven / Gradle / Ivy

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

import org.springframework.cloud.client.ServiceInstance;

import java.util.List;

/**
 * 路由算法接口
 * 主要用于筛选实例,从一众节点中筛选出符合要求的节点
 */
public interface Router {
    /**
     * @param instances 所有可用实例
     * @return ServiceInstance列表
     */
    List routing(List instances);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy