Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add possibility to get ILoadBalancer by name and instance of IClientConfig #459

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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