/**
*
* @param member member to which this MBean belongs
* @param objectName ObjectName of the MBean
* @param monitoringRegion corresponding MonitoringRegion
* @throws IntrospectionException
* @throws ClassNotFoundException
*/
private MBeanProxyInvocationHandler(DistributedMember member, ObjectName objectName,
Region<String, Object> monitoringRegion, boolean isMXBean)
throws IntrospectionException, ClassNotFoundException {
this.member = member;
this.objectName = objectName;
this.monitoringRegion = monitoringRegion;
this.emitter = new NotificationBroadcasterSupport();
this.proxyImpl = new ProxyInterfaceImpl();
this.isMXBean = isMXBean;
}
MBeanProxyInvocationHandler.java 文件源码
java
阅读 19
收藏 0
点赞 0
评论 0
项目:monarch
作者:
评论列表
文章目录