Message-to-Process Passing

From GM-RKB
(Redirected from Message Passing)
Jump to navigation Jump to search

A Message-to-Process Passing is a communication pattern that ...



References

2017

  • (Wikipedia, 2017) ⇒ https://en.wikipedia.org/wiki/message_passing Retrieved:2017-5-31.
    • In computer science, message passing sends a message to a process (which may be an actor or object) and relies on the process and the supporting infrastructure to select and invoke the actual code to run. Message passing differs from conventional programming where a process, subroutine, or function is directly invoked by name. Message passing is key to some models of concurrency and object-oriented programming.

      Message passing is used ubiquitously in modern computer software. It is used as a way for the objects that make up a program to work with each other and as a means for objects and systems running on different computers (e.g., the Internet) to interact. Message passing may be implemented by various mechanisms, including channels.