@Documented @Retention(value=RUNTIME) @Target(value=TYPE) public @interface GridJobStealingDisabled
Here is an example of how this annotation can be attached to a job class:
@GridJobStealingDisabled
public class MyJob extends GridComputeJobAdapter<Object> {
public Serializable execute() throws GridException {
// Job logic goes here.
...
}
}
Copyright © 2014. All rights reserved.