I have N
worker processes and a server process that started those workers. Now I want my workers to communicate to the server in two ways (WorkerK --> Server
and Server --> WorkerK
).
What is the best way to do this?
I read about MemoryMappedFiles
, NamedPipes
and some others. Which one should I choose and why?
My project is Windows Forms Application.