I just want to learn both and how to use them together. I understand that they can complement each other I just could not find an example of someone actually doing it.
|
closed as not constructive by casperOne♦ Nov 1 '12 at 15:59
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
Let me start with a bit of background. The .NET framework has a number of special types - either proper classes or interfaces - The TPL uses Rx uses It's the "asynchronous computation" aspect of both of these that bring TPL and Rx together. Now, the TPL also uses the type
Rx also allow for the same special case with use of a special type called The difference between the TPL and Rx is in the number of values returned. TPL is one and only one whereas Rx is zero or more. So, if you treat Rx in a special way by only working with observable sequences that return a single value you can do some computations in a similar way to the TPL. For example, in the TPL I could write:
And in Rx the equivalent would be:
I could go one step further in Rx by specifying that the TPL should be used to execute the computation like so:
(By default the Thread Pool is used.) Now I could do some "mixing and matching". If I add a reference to the
Notice the If I have an observable that returns more than one value I can use the observable
I think this is a fairly basic answer to your question. Is it what you were expecting? |
|||||||||||||||
|
