io.servicetalk.loadbalancer.RoundRobinLoadBalancers Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of servicetalk-loadbalancer Show documentation
Show all versions of servicetalk-loadbalancer Show documentation
A networking framework that evolves with your application
/*
* Copyright © 2023 Apple Inc. and the ServiceTalk project authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.servicetalk.loadbalancer;
import io.servicetalk.client.api.LoadBalancedConnection;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.util.List;
import static io.servicetalk.utils.internal.ServiceLoaderUtils.loadProviders;
/**
* A factory to create {@link RoundRobinLoadBalancer RoundRobinLoadBalancers}.
*/
public final class RoundRobinLoadBalancers {
private static final Logger LOGGER = LoggerFactory.getLogger(RoundRobinLoadBalancers.class);
private static final List PROVIDERS;
static {
final ClassLoader classLoader = RoundRobinLoadBalancers.class.getClassLoader();
PROVIDERS = loadProviders(RoundRobinLoadBalancerBuilderProvider.class, classLoader, LOGGER);
}
private RoundRobinLoadBalancers() {
// No instances.
}
private static
RoundRobinLoadBalancerBuilder applyProviders(
String id, RoundRobinLoadBalancerBuilder builder) {
for (RoundRobinLoadBalancerBuilderProvider provider : PROVIDERS) {
builder = provider.newBuilder(id, builder);
}
return builder;
}
/**
* A new {@link RoundRobinLoadBalancerBuilder} instance.
*
* The returned builder can be customized using {@link RoundRobinLoadBalancerBuilderProvider}.
*
* @param id a (unique) ID to identify the created {@link RoundRobinLoadBalancer}.
* @param The resolved address type.
* @param The type of connection.
* @return a new {@link RoundRobinLoadBalancerBuilder}.
*/
@SuppressWarnings("deprecation")
public static RoundRobinLoadBalancerBuilder
builder(final String id) {
return applyProviders(id, new RoundRobinLoadBalancerFactory.Builder<>(id));
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy