Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.


IDIEP-118
Author
Sponsor
Created17.01.2024
Status

Status
colourBlue
titleIN PROGRESS


Table of Contents

Motivation

...

New API

Execution API changes

Current state 

Code Block
languagejava
org.apache.ignite.compute.IgniteCompute

<R> CompletableFuture<R> executeAsync(
        Set<ClusterNode> nodes,
        List<DeploymentUnit> units,
        String jobClassName,
        Object... args
);

New API

Code Block
languagejava
org.apache.ignite.compute.IgniteCompute
<R> JobExecution<R> executeAsync(
        JobExecutionOptions options,
        Set<ClusterNode> nodes,
        List<DeploymentUnit> units,
        String jobClassName,
        Object... args
);

...