Message Passing

Noun · Development

Definitions

  1. A communication paradigm where processes or objects exchange data by sending and receiving messages rather than sharing memory, reducing race conditions and coupling.

    In plain English: Instead of two parts of a program reaching into the same memory, they send each other messages like passing notes in class.

    Example: "Erlang processes don't share memory — they communicate entirely through message passing."

Related Terms