Enum LocalKeyDistribution
- java.lang.Object
-
- java.lang.Enum<LocalKeyDistribution>
-
- org.wildfly.clustering.infinispan.distribution.LocalKeyDistribution
-
- All Implemented Interfaces:
Serializable,Comparable<LocalKeyDistribution>,KeyDistribution
public enum LocalKeyDistribution extends Enum<LocalKeyDistribution> implements KeyDistribution
Key distribution implementation for a local cache.- Author:
- Paul Ferraro
-
-
Enum Constant Summary
Enum Constants Enum Constant Description INSTANCE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description List<org.infinispan.remoting.transport.Address>getOwners(Object key)Returns the owners of the specified key.org.infinispan.remoting.transport.AddressgetPrimaryOwner(Object key)Returns the primary owner of the specified key.static LocalKeyDistributionvalueOf(String name)Returns 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 Detail
-
INSTANCE
public static final LocalKeyDistribution INSTANCE
-
-
Method Detail
-
values
public static LocalKeyDistribution[] 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 (LocalKeyDistribution c : LocalKeyDistribution.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LocalKeyDistribution valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
getPrimaryOwner
public org.infinispan.remoting.transport.Address getPrimaryOwner(Object key)
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
public List<org.infinispan.remoting.transport.Address> getOwners(Object key)
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
-
-