Search This Blog

Tuesday, March 9, 2010

Messaging Patterns Used In CORBA

  • Synchronous with Timeout Method Invocation (SMI) – the client is blocked until a response is received from the server or a timeout occurs (client might spawn a thread so main thread is not blocked)
  • Asynchronous Method Invocation (AMI) – the client is not blocked but receives a callback from the server
  • One-way Method Invocation (OMI) – like AMI except no callback is received

No comments:

Post a Comment