Package com.linkedin.venice.router.api
Enum VeniceMultiKeyRoutingStrategy
- java.lang.Object
-
- java.lang.Enum<VeniceMultiKeyRoutingStrategy>
-
- com.linkedin.venice.router.api.VeniceMultiKeyRoutingStrategy
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<VeniceMultiKeyRoutingStrategy>
public enum VeniceMultiKeyRoutingStrategy extends java.lang.Enum<VeniceMultiKeyRoutingStrategy>
This enum is used to define various routing strategies for multi-key requests.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description GREEDY_ROUTING
GROUP_BY_PRIMARY_HOST_ROUTING
HELIX_ASSISTED_ROUTING
LEAST_LOADED_ROUTING
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static VeniceMultiKeyRoutingStrategy
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static VeniceMultiKeyRoutingStrategy[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
GROUP_BY_PRIMARY_HOST_ROUTING
public static final VeniceMultiKeyRoutingStrategy GROUP_BY_PRIMARY_HOST_ROUTING
-
GREEDY_ROUTING
public static final VeniceMultiKeyRoutingStrategy GREEDY_ROUTING
-
LEAST_LOADED_ROUTING
public static final VeniceMultiKeyRoutingStrategy LEAST_LOADED_ROUTING
-
HELIX_ASSISTED_ROUTING
public static final VeniceMultiKeyRoutingStrategy HELIX_ASSISTED_ROUTING
-
-
Method Detail
-
values
public static VeniceMultiKeyRoutingStrategy[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (VeniceMultiKeyRoutingStrategy c : VeniceMultiKeyRoutingStrategy.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static VeniceMultiKeyRoutingStrategy valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-