Uses of Interface
org.apache.ignite.compute.ComputeTaskFuture
-
Packages that use ComputeTaskFuture Package Description org.apache.ignite Contains entry-point Ignite & HPC APIs. -
-
Uses of ComputeTaskFuture in org.apache.ignite
Methods in org.apache.ignite that return ComputeTaskFuture Modifier and Type Method Description <T,R>
ComputeTaskFuture<R>IgniteCompute. executeAsync(Class<? extends ComputeTask<T,R>> taskCls, T arg)
Executes given task asynchronously on within the cluster group.<T,R>
ComputeTaskFuture<R>IgniteCompute. executeAsync(String taskName, T arg)
Executes given task asynchronously within the cluster group.<T,R>
ComputeTaskFuture<R>IgniteCompute. executeAsync(ComputeTask<T,R> task, T arg)
Executes given task asynchronously within the cluster group.<R> ComputeTaskFuture<R>
IgniteCompute. future()
Deprecated.Methods in org.apache.ignite that return types with arguments of type ComputeTaskFuture Modifier and Type Method Description <R> Map<IgniteUuid,ComputeTaskFuture<R>>
IgniteCompute. activeTaskFutures()
Gets tasks future for active tasks started on local node.
-