sfd
2025-05-23 b8fed13b2db09ba79b21bb792ce5161bac62e29b
1
2
3
4
5
6
7
8
9
10
package com.aps.gateway.config.loadBalancer;
 
import org.springframework.cloud.client.ServiceInstance;
import org.springframework.http.server.reactive.ServerHttpRequest;
 
 
public interface GrayLoadBalancer {
 
    ServiceInstance choose(String serviceId, ServerHttpRequest request);
}