InterviewSolution
| 1. |
Are There Important Forms Of Asynchronous Communication That Aren't Supported Directly By Corba? |
|
Answer» Yeah, but you can FAKE it pretty easily. While CORBA does support a deferred synchronous request/response, it does not directly support distributed requests with a callback driven response. A callback driven response allows an application to perform an OPERATION on a distributed object, associate a callback with the response, continue with other PROCESSING. When the SERVER responds, the associated callback is automatically executed within the original caller's application. Yeah, but you can fake it pretty easily. While CORBA does support a deferred synchronous request/response, it does not directly support distributed requests with a callback driven response. A callback driven response allows an application to perform an operation on a distributed object, associate a callback with the response, continue with other processing. When the server responds, the associated callback is automatically executed within the original caller's application. |
|