Interface JobExecutionContext


public interface JobExecutionContext
Context of the ComputeJob execution.
  • Method Summary

    Modifier and Type
    Method
    Description
    Ignite API entry point.
    boolean
    Flag indicating whether the job was cancelled.
    @Nullable Partition
    Partition associated with this job.
  • Method Details

    • ignite

      Ignite ignite()
      Ignite API entry point.
      Returns:
      Ignite instance.
    • isCancelled

      boolean isCancelled()
      Flag indicating whether the job was cancelled.
      Returns:
      true when the job was cancelled.
    • partition

      @Nullable @Nullable Partition partition()
      Partition associated with this job. Not a null only when BroadcastJobTarget.table(String) target is used for submitting jobs. In this case, the partition is local on a node executing the job.
      Returns:
      Partition associated with this job.