Enum LocalKeyDistribution

    • 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 name
        NullPointerException - if the argument is null
      • getPrimaryOwner

        public org.infinispan.remoting.transport.Address getPrimaryOwner​(Object key)
        Description copied from interface: KeyDistribution
        Returns the primary owner of the specified key.
        Specified by:
        getPrimaryOwner in interface KeyDistribution
        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: KeyDistribution
        Returns the owners of the specified key.
        Specified by:
        getOwners in interface KeyDistribution
        Parameters:
        key - a cache key
        Returns:
        a list of addresses for each owner