Changes between Version 46 and Version 47 of Old/NodeHandler/Multicast


Ignore:
Timestamp:
Apr 4, 2006, 3:09:52 PM (18 years ago)
Author:
sswami
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Old/NodeHandler/Multicast

    v46 v47  
    7979'''R.5:'''
    8080{{{
    81 The communication layer will be a separate server that is running the reliable multicast
    82 protocol. It will also handle all TCP socket related functions. The IPC mechanism between this
    83 server and the NodeHandler will be implemented using pipes. When the NodeHandler wants to send
    84 a message to the NodeAgent, this message will be piped to the server which will then send the
    85 message using multicast. Again, when a message is received from the NodeAgent by this server,
    86 it will pipe this message to the NodeHandler.
     81The communication layer will initially be a separate server that is running the reliable
     82multicast protocol. It will also handle all TCP socket related functions. This separation of
     83processes will help in isolating and subsequent easy resolution of all communication related
     84issues. The IPC mechanism between this server and the NodeHandler will be implemented using
     85pipes. When the NodeHandler wants to send a message to the NodeAgent, this message will be
     86piped to the server which will then send the message using multicast. Again, when a message is
     87received from the NodeAgent by this server, it will pipe this message to the NodeHandler.
     88
     89Later this separate server can be combined with the NodeHandler as a loadable library if there
     90are no significant performance issues found.
    8791}}}
    8892