groovy.jmx.builder
Class JmxEventListener
java.lang.Object
groovy.jmx.builder.JmxEventListener
- All Implemented Interfaces:
- java.util.EventListener, javax.management.NotificationListener
public class JmxEventListener
- extends java.lang.Object
- implements javax.management.NotificationListener
The JmxEventListner class is used by the builder to listen to events on the event bus. It is used internally
by JmxBuilder to handle attribute-change and operation-invoke events on the bean() node.
- Author:
- Vladimir Vivien
- See Also:
groovy.jmx.builder.JmxBeanFactory
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
listener
private static JmxEventListener listener
JmxEventListener
public JmxEventListener()
getListner
public static JmxEventListener getListner()
- Factory method that returns an instance of the listener.
- Returns:
- - JmxEventListener instance.
handleNotification
public void handleNotification(javax.management.Notification notification,
java.lang.Object handback)
- This is the mplemented method for NotificationListener. It is called by an event emitter to dispatch
JMX events to listeners. Here it handles internal JmxBuilder events.
- Specified by:
handleNotification
in interface javax.management.NotificationListener
- Parameters:
notification
- the notification object passed to closure used to handle JmxBuilder events.handback
- - In this case, the handback is the closure to execute when the event is handled.
buildOperationNotificationPacket
private static java.util.Map buildOperationNotificationPacket(javax.management.Notification note)
Copyright © ${year} The Codehaus. All Rights Reserved.