Enum LocalKeyDistribution
java.lang.Object
java.lang.Enum<LocalKeyDistribution>
org.wildfly.clustering.infinispan.distribution.LocalKeyDistribution
- All Implemented Interfaces:
Serializable,Comparable<LocalKeyDistribution>,KeyDistribution
Key distribution implementation for a local cache.
- Author:
- Paul Ferraro
-
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionList<org.infinispan.remoting.transport.Address>Returns the owners of the specified key.org.infinispan.remoting.transport.AddressgetPrimaryOwner(Object key) Returns the primary owner of the specified key.static LocalKeyDistributionReturns the enum constant of this type with the specified name.static LocalKeyDistribution[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
INSTANCE
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
getPrimaryOwner
Description copied from interface:KeyDistributionReturns the primary owner of the specified key.- Specified by:
getPrimaryOwnerin interfaceKeyDistribution- Parameters:
key- a cache key- Returns:
- the address of the primary owner
-
getOwners
Description copied from interface:KeyDistributionReturns the owners of the specified key.- Specified by:
getOwnersin interfaceKeyDistribution- Parameters:
key- a cache key- Returns:
- a list of addresses for each owner
-