July 2014
Intermediate to advanced
554 pages
17h 49m
English
Chapter 2
An Overview
Interprocess communication is at the heart of distributed computing. User processes run on host machines that are connected to one another through a network, and the network carries signals that propagate from one process to another. These signals represent data.* We separate interprocess communication into two parts:
Networking: This deals with how processes communicate with one another via the various protocol layers. The important issues in networking are routing, error control, flow control, authentication, etc. This is the internal view.
Users’ view: User processes have an abstract high-level view of the interprocess communication medium. This is the external view. An average ...