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

com.github.netty.springboot.client.NettyRpcLoadBalanced Maven / Gradle / Ivy

The newest version!
package com.github.netty.springboot.client;

import java.net.InetSocketAddress;

/**
 * Load balancing
 *
 * @author wangzihao
 */
@FunctionalInterface
public interface NettyRpcLoadBalanced {

    /**
     * Pick an IP address
     *
     * @param request request
     * @return The IP address
     */
    InetSocketAddress chooseAddress(NettyRpcRequest request);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy