Class MyJob
java.lang.Object
org.apache.ignite.example.code.deployment.MyJob
- All Implemented Interfaces:
ComputeJob<String,String>
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionexecuteAsync(JobExecutionContext ctx, String arg) Executes the job on an Ignite node.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.apache.ignite.compute.ComputeJob
inputMarshaller, resultMarshaller
-
Constructor Details
-
MyJob
public MyJob()
-
-
Method Details
-
executeAsync
Description copied from interface:ComputeJobExecutes the job on an Ignite node.- Specified by:
executeAsyncin interfaceComputeJob<String,String> - Parameters:
ctx- The execution context.arg- Job arguments.- Returns:
- Job future. Can be null if the job is synchronous and does not return any result.
-