TPL v/s Reactive Framework

Posted by Abhijeet Patel on Stack Overflow See other posts from Stack Overflow or by Abhijeet Patel
Published on 2010-03-30T03:46:38Z Indexed on 2010/03/30 3:53 UTC
Read the original article Hit count: 495

Filed under:
|
|
|

When would one choose to use Rx over TPL or are the 2 frameworks orthogonal?

From what I understand Rx is primarily intended to provide an abstraction over events and allow composition but it also allows for providing an abstraction over async operations. using the Createxx overloads and the Fromxxx overloads and cancellation via disposing the IDisposable returned.

TPL also provides an abstraction for operations via Task and cancellation abilities.

My dilemma is when to use which and for what scenarios?

© Stack Overflow or respective owner

Related posts about .NET

Related posts about rx