Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I am new to Windows technologies. I want to use an IPC mechanism for high-frequency data exchanges between processes. what are some of the cross-platform IPC mechanism available in .net framework?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
198 views
Welcome To Ask or Share your Answers For Others

1 Answer

Wikipedia has a great article here, describing the several possibilities of IPC.

Mostly IPC is refered to as communication between processes on the same host.

Therefor you are referring to 'cross plattform' it is dependant if you mean only the .Net Framework or also communication between .Net Framework applications and applications written in other Languages. Additionally you are mentioning that you are 'new to windows'.

When you are talking about the .Net Framework Core which is available for Windows and Linux you could eg. use Protobuffers where you can find an article here. This way you can use normal Network / Named Pipe for communication.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...