Recently I started to evaluation asynchronous communication approaches in CORBA(approaches that there are in CORBA by nature). But I couldn’t find any document that illustrates this. Can anyone help me to find and even implementation them?
Thanks in advance
Recently I started to evaluation asynchronous communication approaches in CORBA(approaches that there are in
Share
There are two approaches that you can try.
Read about CORBA notification service here for a quick introduction. If you want to code and understand more , refer Java Programming with CORBA, 3rd Edition by Gerald Brose, Andreas Vogel and Keith Duddy (if your language choice is Java. Otherwise also you can get the concepts, but not example programs)
When it comes to one-way calls, you need refer the method, it follows observer patterns. You have to define onEvent method as a one-way method when you are defining the methods by idl. Google out for info. Cheers.