@Documented @Retention(value=RUNTIME) @Target(value={METHOD,FIELD}) public @interface GridHomeResource
GridConfiguration.
Home path can be injected into instances of following classes:
Here is how injection would typically happen:
public class MyGridJob implements GridComputeJob {
...
@GridHomeResource
private String home;
...
}
or
public class MyGridJob implements GridComputeJob {
...
private String home;
...
@GridHomeResource
public void setGridGainHome(String home) {
this.home = home;
}
...
}
See GridConfiguration.getGridGainHome() for Grid configuration details.
Copyright © 2014. All rights reserved.