Enum DistributedTaskExecutionPolicy

  • All Implemented Interfaces:
    Serializable, Comparable<DistributedTaskExecutionPolicy>

    public enum DistributedTaskExecutionPolicy
    extends Enum<DistributedTaskExecutionPolicy>
    DistributedTaskExecutionPolicy allows task to specify its custom task execution policy across Infinispan cluster.

    DistributedTaskExecutionPolicy effectively scopes execution of tasks to a subset of nodes. For example, someone might want to exclusively execute tasks on a local network site instead of a backup remote network centre as well. Others might, for example, use only a dedicated subset of a certain Infinispan rack nodes for specific task execution. DistributedTaskExecutionPolicy is set per instance of DistributedTask.

    Since:
    5.2
    Author:
    Vladimir Blagojevic
    • Method Detail

      • values

        public static DistributedTaskExecutionPolicy[] 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 (DistributedTaskExecutionPolicy c : DistributedTaskExecutionPolicy.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static DistributedTaskExecutionPolicy 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