Jump to content

Inter-process communication: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
Fixed typo
Tags: Reverted Visual edit Mobile edit Mobile web edit
Fixed typo
Tags: Reverted Visual edit Mobile edit Mobile web edit
Line 33: Line 33:
=== Operating system communication stack ===
=== Operating system communication stack ===
The following are platform or programming language-specific APIs:
The following are platform or programming language-specific APIs:
{{Div col|colwidth=30em}}
* [[Apple Computer]]'s [[Apple events]], previously known as Interapplication Communications (IAC)
* [[ARexx]] ports
* [[ENEA AB|Enea's]] [[LINX (IPC)|LINX]] for Linux (open source) and various DSP and general-purpose processors under [[Operating System Embedded|OSE]]
* The [[Mach kernel]]'s Mach Ports
* [[Microsoft]]'s [[ActiveX]], [[Component Object Model]] (COM), [[Microsoft Transaction Server]] ([[COM+]]), [[Distributed Component Object Model]] (DCOM), [[Dynamic Data Exchange]] (DDE), [[Object Linking and Embedding]] (OLE), [[Anonymous pipe#Microsoft Windows|anonymous pipes]], [[Named pipe#Named pipes in Windows|named pipes]], [[Local Procedure Call]], [[MailSlot]]s, [[Message loop in Microsoft Windows|Message loop]], [[MSRPC]], [[.NET Remoting]], and [[Windows Communication Foundation]] (WCF)
* [[Novell]]'s [[IPX/SPX|SPX]]
* [[POSIX]] [[mmap]], [[message queue]]s, [[semaphore (programming)|semaphores]],<ref>"[http://www.tldp.org/pub/Linux/docs/ldp-archived/linuxfocus/English/Archives/lf-2003_01-0281.pdf Concurrent programming - communication between processes]"</ref> and [[Shared memory (interprocess communication)|shared memory]]
* [[RISC OS]]'s messages
* [[Solaris (operating system)|Solaris]] [[Doors (computing)|Doors]]
* [[System V]]'s message queues, semaphores, and shared memory
* [[Transparent Inter-process Communication|Linux Transparent Inter Process Communication (TIPC)]]
* [[OpenBinder]] Open binder
* [[QNX]]'s PPS (Persistent Publish/Subscribe) service
{{div col end}}

=== Distributed object models ===
=== Distributed object models ===
The following are platform or programming language specific-APIs that use IPC, but do not themselves implement it:
The following are platform or programming language specific-APIs that use IPC, but do not themselves implement it:

Revision as of 17:36, 19 July 2022

A grid computing system that connects many personal computers over the Internet via inter-process network communication

In computer science, inter-process communication or interprocess communication (IPC) refers specifically to the mechanisms an operating system provides to allow the processes to manage shared data. Typically, applications can use IPC, categorized as clients and servers, where the client requests data and the server responds to client requests. Many applications are both clients and servers, as commonly seen in distributed computing.

IPC is very important to the design process for microkernels and nanokernels, which reduce the number of functionalities provided by the kernel. Those functionalities are then obtained by communicating with servers via IPC, leading to a large increase in communication when compared to a regular monolithic kernel. IPC interfaces generally encompass variable analytic framework structures. These processes ensure compatibility between the multi-vector protocols upon which IPC models rely.

An IPC mechanism is either synchronous or asynchronous. Synchronization primitives may be used to have synchronous behavior with an asynchronous IPC mechanism.

Approaches

Different approaches to IPC have been tailored to different software requirements, such as performance, modularity, and system circumstances such as network bandwidth and latency.

Applications

Remote procedure call interfaces

  • Java's Remote Method Invocation (RMI)
  • ONC RPC
  • XML-RPC or SOAP
  • JSON-RPC
  • Message Bus (Mbus) (specified in RFC 3259) (not to be confused with M-Bus)
  • .NET Remoting
  • gRPC

Platform communication stack

The following are messaging, and information systems that utilize IPC mechanisms but don't implement IPC themselves:

Operating system communication stack

The following are platform or programming language-specific APIs:

Distributed object models

The following are platform or programming language specific-APIs that use IPC, but do not themselves implement it:

See also

References

  1. ^ "IpcMain | Electron".