A code example illustrating the difference between the paradigms of async/await and Reactive (Rx) extension?

痞子三分冷 提交于 2019-12-20 08:39:02

问题


Both the System.Reactive extension for .NET and new C# 5.0 (.NET 4.5) async/await pursue (or based on) future and promises constructs paradigm (approach).

Can you give the (*) simplest C# code example illustrating the difference between them?

(*)
Is it possible without I/O, internet or database connections?

Update:
Well, let me reformulate if this question seemed to be answered before.
Why would one add and start using Reactive (Rx) extensions for .NET while using native .NET Iobservable/IObserver + await/async?

What are the possible illustrations of what one will be missing from Rx that made to do the same more clumsy or less efficient without Rx (i.e. engaging just native .NET Iobservable/IObserver + await/async approach)?


回答1:


The Future/Promise paradigm generally is used for returning a single value in the future. Perhaps there is some heavy calculation or IO that is required and hence why it can not be guaranteed to be return synchronously in a timely manner.

Rx (and by proxy the IObserver<T>/IObservable<T> interfaces) is a paradigm of observable sequences. Just as a synchronous method could return a single value (int), it could also return an IEnumerable<int> with one value. Comparing this to an asynchronous world, Task<int> can return a single int value, IObservable<int> could return a sequence with just one int value.

So if you wanted to return a sequence of values with Task<T>, you would have to either create some sort of continuation, or return a collection/array/list of values as the T e.g. Task<int[]>. This however will mean you get all or non of the values.

Task/Task<T> is also a concrete type, where as Rx uses interfaces to abstract you from implementation. I have found this to help in unit testing. TaskCompletionSource<T> however can be helpful to avoid implicit concurrency when testing with tasks.

Finally, besides the main difference that Rx is dealing with sequences of values (not single values), Rx is also designed to work with LINQ to deliver the querying and composition benefits that seems to work very well with sequences (either at rest like IEnumerable<T>, or in motion like IObservable<T>).

Ultimately these are different tools for slightly different jobs. There is some overlap, so you sometimes can use one to do what the other is better at. To be specific, I think Task is better at composing units of asynchronous work together (Do this, then do that, then do this), where as Rx is better at composing sequences of events together (When this event happens, do this with data from this other event).




回答2:


I like the table in the Reactive documentation: http://reactivex.io/intro.html

I have my own take on it where i add a third dimension non-composable/composable.

Non-composable:

       |  Single Item   | Multiple items
 ------|----------------|----------------
 Sync  | Function       | Iterable
 Async | Async function | Observable

Composable:

       |      Single Item      |       Multiple items
 ------|-----------------------|----------------------------
 Sync  | Higher order function | Linq/Ramda/java.util.stream
 Async | Future/promise        | Rx observable

And mind you that depending on the implementation, you can have futures and rx observables that can act both synchronously or asynchronously depending on whether what you are trying to do with them is synchronous or asynchrounous




回答3:


They're not mutually exclusive. The main determination is whether you have a single future result or multiple future results.

http://blogs.msdn.com/b/rxteam/archive/2012/03/12/reactive-extensions-v2-0-beta-available-now.aspx

http://blogs.msdn.com/cfs-filesystemfile.ashx/__key/communityserver-blogs-components-weblogfiles/00-00-01-31-75-metablogapi/0815.image_5F00_thumb_5F00_59BBA077.png



来源:https://stackoverflow.com/questions/15876957/a-code-example-illustrating-the-difference-between-the-paradigms-of-async-await

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