Can Reactive Extensions (Rx) be used across process or machine boundaries?
问题 Vaguely remember seeing some discussions on this quite a while back but haven't heard anything since. So basically are you able to subscribe to an IObservable on a remote machine? 回答1: You can use IObservable.Remotable to use observables directly from other machines via .NET Remoting. 回答2: Another possible solution could be to use named pipes. There is an excellent NuGet package NamedPipeWrapper, see the source on GitHub. It would be easy to write a thin RX wrapper over this, i.e. subscribe