|
GridGain 3.6.0e
Enterprise Edition |
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: REQUIRED | OPTIONAL | DETAIL: ELEMENT | |||||||||
@Documented
@Retention(value=RUNTIME)
@Target(value={METHOD,FIELD})
public @interface GridMBeanServerResource
Annotates a field or a setter method for injection of MBeanServer resource. MBean server
is provided to grid via GridConfiguration.
MBean server can be injected into instances of following classes:
Here is how injection would typically happen:
public class MyGridJob implements GridJob {
...
@GridMBeanServerResource
private MBeanServer mbeanSrv;
...
}
or
public class MyGridJob implements GridJob {
...
private MBeanSever mbeanSrv;
...
@GridMBeanServerResource
public void setMBeanServer(MBeanServer mbeanSrv) {
this.mbeanSrv = mbeanSrv;
}
...
}
See GridConfiguration.getMBeanServer() for Grid configuration details.
| Wiki | |
| Forum |

|
GridGain 3.6.0e
Enterprise Edition |
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: REQUIRED | OPTIONAL | DETAIL: ELEMENT | |||||||||
|
GridGain - Real Time Big Data
|
|
|