Package org.apache.ignite.compute
Interface BroadcastExecution<R>
- Type Parameters:
R
- Job result type.
public interface BroadcastExecution<R>
Broadcast job control object, provides information about the job executions and results.
-
Method Summary
Modifier and TypeMethodDescriptionReturns a collection of individual job executions.Returns all jobs execution results.
-
Method Details
-
executions
Collection<JobExecution<R>> executions()Returns a collection of individual job executions.- Returns:
- A collection of individual job executions.
-
resultsAsync
CompletableFuture<Collection<R>> resultsAsync()Returns all jobs execution results.- Returns:
- Future which will be completed with a collection of all jobs results when all jobs have completed successfully.
-