Inter-Process Communication (IPC) refers to the exchange of data among multiple threads in one or more processes, either locally or on remote computers connected in a network. The available methods of IPC vary based on the bandwidth and latency of communication between the threads, and the type of data being transmitted. IPC includes subtopics such as message passing, synchronization, shared memory, and remote procedure calls (RPC).
Questions tagged [inter-process-communicat]
218 questions
0
votes
3 answers
Communication between WinForms apps in a large project
I'm working on a large project (teams are working separately) and now that most of the apps are finished, we need to integrate everything together. A lot of apps/forms need to communicate information to other apps/forms or solicit information from…

mrk
- 3,061
- 1
- 29
- 34
0
votes
1 answer
Multi-Processing browser?
I want to know what framework/Interface/API's Set is best to use to create multi-process browser, i want to be able to use UDP/TCP for the process-to-process communication.
Thanks in advance.

VisaToHell
- 508
- 1
- 12
- 29
-1
votes
1 answer
Need to check whether pipe is working as bidirectional or not
In the below code, I have created two pipes. My intention to use two pipe is to make the communication bidirectional. My code is working fine and I also get output. I want to get assured whether my code is really working as a bidirectional…

user3751012
- 533
- 1
- 8
- 20
-1
votes
1 answer
Inter process communication for web and window application
I want to send data from intranet web application that is running on server to a window application running on local machine??
which would be the best way to perform this task?
i am comfortable with wcf services.
can anyone please post any link to…

user3581129
- 1
- 1
-1
votes
1 answer
Inter Process Communication to simulate bully algorithm
I don't know alot about inter process communication
but I want to make a simulation of the bully algorithm using inter process communication
and after searching i found that there are mechanisms to use IPC
Clipboard
COM
Data Copy
DDE
File…

Rehab Reda
- 193
- 7
- 16
-2
votes
1 answer
send broadcast restricted to dynamic list of applications
my application defines events that other apps installed on the device could be registered to (like other apps can register to google play services location updates and activity recognition events).
google play services process notify this types of…

Tal Kanel
- 10,475
- 10
- 60
- 98
-2
votes
2 answers
Create shared memory for several processes by using only native C++ operations?
How can I allocate shared memory accessible from multiple processes by using only native C++ operations? Or should I use my OS API as it is in the case of inter thread synchronization objects such as mutex and semaphores are? (I mean you can not use…

Narek
- 38,779
- 79
- 233
- 389
-2
votes
1 answer
Child parent interprocess communication with pipe
I am trying to understand in the communication between the parent and child. Disclaimer: The following is the sample code provided by my professor in class to understand interprocess communication. My main weakness is in file descriptors. I…

teamaster
- 403
- 2
- 6
- 16