cross-platform ipc mechanism in .net framework

混江龙づ霸主 提交于 2019-12-13 09:53:41

问题


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?


回答1:


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.



来源:https://stackoverflow.com/questions/49788406/cross-platform-ipc-mechanism-in-net-framework

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!