|
From: vickyk <do-...@jb...> - 2006-06-29 10:52:45
|
| // Call create on the service Proxy
| try
| {
| ctx.proxy.create();
| sequenceNo++;
| Notification createMsg = new Notification(ServiceMBean.CREATE_EVENT,
| this, sequenceNo);
| createMsg.setUserData(serviceName);
| sendNotification(createMsg);
| }
|
Above is the code snippet from the ServiceController .create(ObjectName serviceName , Collection depends) .
I am not able to understand
1) Who receives the Notification Message from the sendNotification(createMsg);
2) And how is this used ?
Some direction with reference to the code will be helpful .
Regards
Vicky
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3954321#3954321
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3954321
|