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

cn.flood.cloud.gateway.rule.GrayLoadBalancer Maven / Gradle / Ivy

There is a newer version: 2.7.14.0
Show newest version
package cn.flood.cloud.gateway.rule;

import org.springframework.cloud.client.ServiceInstance;
import org.springframework.http.server.reactive.ServerHttpRequest;

/**
 * 灰度路由
 *
 * @author L.cm
 * @author madi
 * @date 2021-02-24 13:41
 */
public interface GrayLoadBalancer {

	/**
	 * 根据serviceId 筛选可用服务
	 *
	 * @param serviceId 服务ID
	 * @param request   当前请求
	 * @return
	 */
	ServiceInstance choose(String serviceId, ServerHttpRequest request);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy