Top "Interprocess" questions

A capability supported by some operating systems that allows one process to communicate with another process.

any good and simple RPC library for inter-process calls?

I need to send a (probably one) simple one-way command from client processes to server process with arguments of builtin …

c++ rpc interprocess
What's the most efficient node.js inter-process communication library/method?

We have few node.js processes that should be able to pass messages, What's the most efficient way doing that? …

javascript node.js redis interprocess
How to start an Android activity from a Unity Application?

I know this seems to be a trivial question but I could not find any concrete answer anywhere on the …

c# android mono unity3d interprocess
How to solve "The ChannelDispatcher is unable to open its IChannelListener" error?

I'm trying to communicate between WCF hosted in Windows Service and my service GUI. The problem is when I'm trying …

c# wcf interprocess net.tcp
What is the easiest way to do inter process communication in C#?

I have two C# applications and I want one of them send two integers to the other one (this doesn't …

c# ipc communication interprocess
Object Sharing between Applications?

Let's say I have a large data array updated 1000+ times per second. Another application wants to access and read the …

c# object sharing interprocess
How to use named pipes in C# correctly -- several connections, server recreation etc

I need to implement an inter-process communication between C# applications. I decided to use named pipes and wrote the following …

c# named-pipes interprocess
File Locking vs. Semaphores

Just out of curiosity, what is the preferred way to achieve interprocess synchronization on Linux? The sem*(2) family of system …

c linux unix interprocess