Enum ComputeJobResultPolicy
This enumeration provides different types of actions following the last received job result. See OnResult(IComputeJobResult<TJobRes>, IList<IComputeJobResult<TJobRes>>) for more details.
Namespace: Apache.Ignite.Core.Compute
Assembly: Apache.Ignite.Core.dll
Syntax
public enum ComputeJobResultPolicy : int
Fields
Name | Description |
---|---|
Failover | Fail-over job to execute on another node. |
Reduce | Ignore all not yet received results and start reducing results. |
Wait | Wait for results if any are still expected. If all results have been received - it will start reducing results. |