You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Motivation:
We're switching over to the new load balancer API's, but we still
have the older API's sitting around.
Modifications:
Deprecate the old API's and direct users to the new.
Copy file name to clipboardexpand all lines: servicetalk-loadbalancer/src/main/java/io/servicetalk/loadbalancer/DelegatingRoundRobinLoadBalancerBuilder.java
+2
Original file line number
Diff line number
Diff line change
@@ -28,7 +28,9 @@
28
28
*
29
29
* @param <ResolvedAddress> The resolved address type.
30
30
* @param <C> The type of connection.
31
+
* @deprecated use {@link DelegatingLoadBalancerBuilder} instead.
31
32
*/
33
+
@Deprecated// FIXME: 0.43 - Remove in favor of the DefaultLoadBalancer types
Copy file name to clipboardexpand all lines: servicetalk-loadbalancer/src/main/java/io/servicetalk/loadbalancer/RoundRobinLoadBalancerBuilderProvider.java
+3-1
Original file line number
Diff line number
Diff line change
@@ -19,8 +19,10 @@
19
19
20
20
/**
21
21
* Provider for {@link RoundRobinLoadBalancerBuilder} that can be registered using {@link java.util.ServiceLoader}.
22
+
* @deprecated use the {@link LoadBalancerBuilder} implementations along with {@link LoadBalancerBuilderProvider}
0 commit comments