Interface ConnectionLoadBalancingPolicy
- All Known Implementing Classes:
FirstElementConnectionLoadBalancingPolicy
,RandomConnectionLoadBalancingPolicy
,RandomStickyConnectionLoadBalancingPolicy
,RoundRobinConnectionLoadBalancingPolicy
public interface ConnectionLoadBalancingPolicy
A ConnectionLoadBalancingPolicy defines a policy to load balance between connections.
-
Method Summary
Modifier and TypeMethodDescriptionint
select
(int max) Returns the selected index according to the policy implementation.
-
Method Details
-
select
int select(int max) Returns the selected index according to the policy implementation.- Parameters:
max
- maximum position index that can be selected
-