com.zhizus.forest.thrift.client.cluster.LoadBalance Maven / Gradle / Ivy
The newest version!
package com.zhizus.forest.thrift.client.cluster;
import com.zhizus.forest.thrift.client.ServerInfo;
import java.util.List;
/**
* Created by Dempe on 2016/12/26.
*/
public interface LoadBalance {
T select(String key);
List getAvailableServerList();
void setList(List list);
}