Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,24 @@ public static synchronized ILoadBalancer getNamedLoadBalancer(String name, Class
}
}

/**
* Get the load balancer associated with the name, or create one with the given clientConfig if does not exist
*
* @throws RuntimeException if any error occurs
* @see #registerNamedLoadBalancerFromclientConfig(String, IClientConfig)
*/
public static synchronized ILoadBalancer getNamedLoadBalancer(String name, IClientConfig clientConfig) {
ILoadBalancer lb = namedLBMap.get(name);
if (lb == null) {
try {
lb = registerNamedLoadBalancerFromclientConfig(name, clientConfig);
} catch (ClientException e) {
throw new RuntimeException("Unable to create load balancer", e);
}
}
return lb;
}

/**
* Create and register a load balancer with the name and given the class of configClass.
*
Expand Down