Package org.apache.ignite.compute
Enum ComputeJobResultPolicy
- java.lang.Object
- 
- java.lang.Enum<ComputeJobResultPolicy>
- 
- org.apache.ignite.compute.ComputeJobResultPolicy
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<ComputeJobResultPolicy>
 
 public enum ComputeJobResultPolicy extends Enum<ComputeJobResultPolicy> This enumeration provides different types of actions following the last received job result. SeeComputeTask.result(ComputeJobResult, List)for more details.
- 
- 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static @Nullable ComputeJobResultPolicyfromOrdinal(byte ord)Efficiently gets enumerated value from its ordinal.static ComputeJobResultPolicyvalueOf(String name)Returns the enum constant of this type with the specified name.static ComputeJobResultPolicy[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
WAITpublic static final ComputeJobResultPolicy WAIT Wait for results if any are still expected. If all results have been received - it will start reducing results.
 - 
REDUCEpublic static final ComputeJobResultPolicy REDUCE Ignore all not yet received results and start reducing results.
 - 
FAILOVERpublic static final ComputeJobResultPolicy FAILOVER Fail-over job to execute on another node.
 
- 
 - 
Method Detail- 
valuespublic static ComputeJobResultPolicy[] 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 (ComputeJobResultPolicy c : ComputeJobResultPolicy.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static ComputeJobResultPolicy 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
 
 - 
fromOrdinal@Nullable public static @Nullable ComputeJobResultPolicy fromOrdinal(byte ord) Efficiently gets enumerated value from its ordinal.- Parameters:
- ord- Ordinal value.
- Returns:
- Enumerated value.
 
 
- 
 
-