Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Registering the MBean with the MBeanServer causes the MBean to be available to JMX clients of the member.

 

Each MBean is registered in the member by the SystemManagementService registerInternalMBean method right after the MBean is instantiated like: 

Code Block
languagejava
titleMBean Registration
service.registerInternalMBean(regionMBean, regionMBeanName);

...

Federate the MBean

Federating the MBean causes the MBean to be registered in the JMX manager's MBeanServer which in turn causes the MBean to be available to JMX clients of the JMX manager.

...