Interprocess Communication: Methods and Protocols

Interprocess Communication Essentials

Interprocess communication involves sending a message between a socket in one process and a socket in another.

Communication Forms

  • In synchronous communication, sending and receiving processes synchronize with each message.
  • In asynchronous communication, the send operation is non-blocking, and the receive operation can have varied behavior.

Message Destination

Internet protocols send messages to (Internet address, local port) pairs. Processes can use multiple ports

Read More