@Documented @Retention(value=RUNTIME) @Target(value=METHOD) public @interface GridComputeJobAfterSend
This annotation can be applied to methods of GridComputeJob instance only.
It is invoked on the caller node after the job has been sent to remote node for execution.
Example:
public class MyGridJob implements GridComputeJob {
...
@GridComputeJobAfterSend
public void onJobAfterSend() {
...
}
...
}
Copyright © 2014. All rights reserved.