Asynchronous communication in CORBA

Recently, I began to evaluate asynchronous communication approaches in CORBA (the approaches that exist in CORBA by nature). But I could not find a document that illustrates this. Can someone help me find and even implement them? thanks in advance

+4
source share
2 answers

There are two approaches you can try.

1) CORBA notification service 2) CORBA one way method calls 

Read about the CORBA notification service here for a quick reference. If you want to code and understand more, refer to Java programming with CORBA, 3rd Edition by Gerald Brose, Andreas Vogel and Keith Duddy (if your choice of language is Java. Otherwise, you can also get concepts, but not sample programs)

When it comes to one-way calls, you need to refer to the method, this follows the patterns of observers. You must define the onEvent method as a one-way method when you define idl methods. Google for info. Greetings.

+2
source

Although you have not indicated which version of the language you are looking for, you can get sample working codes for:

  • C ++ with ACE / TAO ORB here
  • Java example using JacorB pdf book . Overview of chapter 15.

The Reference Guide for Asynch Communication is Michi Henning's advanced CBA C ++ programming. The topic is discussed in chapter 20.

+1
source

All Articles