Searched refs:emitter (Results 1 - 15 of 15) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/management/
H A DStandardEmitterMBean.java34 * StandardEmitterMBean(implementation, mbeanInterface, emitter)} to
51 * final NotificationEmitter emitter =
56 * impl, Intf.class, emitter);
70 private final NotificationEmitter emitter; field in class:StandardEmitterMBean
78 * by forwarding its methods to {@code emitter}. It is legal and useful
79 * for {@code implementation} and {@code emitter} to be the same object.</p>
81 * <p>If {@code emitter} is an instance of {@code
83 * sendNotification} method will call {@code emitter.}{@link
88 * {@code emitter.}{@link NotificationBroadcaster#getNotificationInfo
90 * returned by {@code emitter
103 StandardEmitterMBean(T implementation, Class<T> mbeanInterface, NotificationEmitter emitter) argument
143 StandardEmitterMBean(T implementation, Class<T> mbeanInterface, boolean isMXBean, NotificationEmitter emitter) argument
189 StandardEmitterMBean(Class<?> mbeanInterface, NotificationEmitter emitter) argument
228 StandardEmitterMBean(Class<?> mbeanInterface, boolean isMXBean, NotificationEmitter emitter) argument
[all...]
/openjdk7/jdk/test/javax/management/remote/mandatory/notif/
H A DNotSerializableNotifTest.java48 private static ObjectName emitter; field in class:NotSerializableNotifTest
67 emitter = new ObjectName("Default:name=NotificationEmitter");
68 mbeanServer.registerMBean(new NotificationEmitter(), emitter);
121 client.addNotificationListener(emitter, listener, null, null);
126 client.invoke(emitter, "sendNotserializableNotifs", params, signatures);
129 client.removeNotificationListener(emitter, listener);
131 client.addNotificationListener(emitter, listener, null, null);
135 client.invoke(emitter, "sendNotifications", params, signatures);
160 client.removeNotificationListener(emitter, listener);
/openjdk7/jdk/test/javax/management/proxy/
H A DNotificationEmitterProxy.java109 NotificationEmitter emitter = (NotificationEmitter)delegate;
110 emitter.addNotificationListener(listener,filter,"JMX.newMBeanProxy");
123 NotificationEmitter emitter = (NotificationEmitter)delegate;
124 emitter.addNotificationListener(listener,filter,
/openjdk7/jdk/test/java/lang/management/MemoryMXBean/
H A DCollectionUsageThreshold.java158 NotificationEmitter emitter = (NotificationEmitter) mm;
159 emitter.addNotificationListener(listener, null, null);
H A DMemoryManagement.java97 NotificationEmitter emitter = (NotificationEmitter) mm;
98 emitter.addNotificationListener(listener, null, null);
H A DLowMemoryTest.java127 NotificationEmitter emitter = (NotificationEmitter) mm;
128 emitter.addNotificationListener(listener, null, null);
129 emitter.addNotificationListener(l2, null, null);
H A DLowMemoryTest2.java208 NotificationEmitter emitter = (NotificationEmitter) mm;
209 emitter.addNotificationListener(l2, null, null);
/openjdk7/jdk/test/java/lang/management/ManagementFactory/
H A DProxyTypeMapping.java61 // check notification emitter
63 NotificationEmitter emitter = (NotificationEmitter) memory;
64 emitter.addNotificationListener(listener, null, null);
65 emitter.removeNotificationListener(listener);
/openjdk7/jdk/src/share/sample/jmx/jmx-scandir/test/com/sun/jmx/examples/scandir/
H A DDirectoryScannerTest.java114 final NotificationEmitter emitter = (NotificationEmitter)
116 emitter.addNotificationListener(listener, filter, handback);
134 emitter.removeNotificationListener(listener,filter,handback);
H A DScanManagerTest.java192 final NotificationEmitter emitter = (NotificationEmitter)proxy;
193 emitter.addNotificationListener(listener, filter, handback);
211 emitter.removeNotificationListener(listener,filter,handback);
/openjdk7/jdk/src/share/classes/sun/management/snmp/jvminstr/
H A DJVM_MANAGEMENT_MIB_IMPL.java202 private final NotificationEmitter emitter; field in class:JVM_MANAGEMENT_MIB_IMPL
213 emitter = (NotificationEmitter) ManagementFactory.getMemoryMXBean();
214 emitter.addNotificationListener(handler, null, null);
271 emitter.removeNotificationListener(handler);
/openjdk7/jdk/src/share/classes/java/lang/management/
H A DManagementFactory.java512 * If the MXBean is a notification emitter (i.e.,
603 // check if the registered MBean is a notification emitter
604 boolean emitter = connection.isInstanceOf(objName, NOTIF_EMITTER);
608 emitter);
/openjdk7/jdk/test/javax/management/remote/mandatory/threads/
H A DExecutorTest.java149 EmitterMBean emitter = (EmitterMBean)
160 emitter.emit();
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/inspector/
H A DXSheet.java582 DefaultMutableTreeNode emitter, long received, boolean bold) {
585 if (bold && emitter != selectedNode) {
588 updateNotificationsNodeLabel(emitter, text);
714 DefaultMutableTreeNode emitter = (DefaultMutableTreeNode) handback;
716 updateReceivedNotifications(emitter, received.longValue(), true);
581 updateReceivedNotifications( DefaultMutableTreeNode emitter, long received, boolean bold) argument
/openjdk7/jdk/src/share/classes/com/sun/jmx/interceptor/
H A DDefaultMBeanServerInterceptor.java1344 NotificationEmitter emitter = (NotificationEmitter) broadcaster;
1345 emitter.removeNotificationListener(listenerWrapper,

Completed in 91 milliseconds