Class CollectConflictPartitionKeysTask.CollectPartitionEntryHashesJob
- java.lang.Object
-
- org.apache.ignite.compute.ComputeJobAdapter
-
- org.apache.ignite.internal.processors.cache.verify.CollectConflictPartitionKeysTask.CollectPartitionEntryHashesJob
-
- All Implemented Interfaces:
Serializable,Callable<Object>,ComputeJob
- Enclosing class:
- CollectConflictPartitionKeysTask
public static class CollectConflictPartitionKeysTask.CollectPartitionEntryHashesJob extends ComputeJobAdapter
- See Also:
- Serialized Form
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Map<PartitionHashRecord,List<PartitionEntryHashRecord>>execute()Executes this job.-
Methods inherited from class org.apache.ignite.compute.ComputeJobAdapter
argument, arguments, call, cancel, isCancelled, setArguments
-
-
-
-
Method Detail
-
execute
public Map<PartitionHashRecord,List<PartitionEntryHashRecord>> execute() throws IgniteException
Executes this job.- Returns:
- Job execution result (possibly
null). This result will be returned inComputeJobResult.getData()method passed intoComputeTask.result(ComputeJobResult, List)task method on caller node. - Throws:
IgniteException- If job execution caused an exception. This exception will be returned inComputeJobResult.getException()method passed intoComputeTask.result(ComputeJobResult, List)task method on caller node. If execution produces aRuntimeExceptionorError, then it will be wrapped intoIgniteCheckedException.
-
-