What is LINQ to events a.k.a RX Framework?

前端 未结 4 1738
自闭症患者
自闭症患者 2020-12-23 09:49

What is LINQ to events a.k.a RX Framework aka the Reactive Extensions in .NET 4.0 (but also available as backported versions)?

In other words, what

4条回答
  •  挽巷
    挽巷 (楼主)
    2020-12-23 10:34

    I think the essence of the RX is changing the angle with which we look at information. Naturally, every piece of information is a result of some process, which takes place in the time-space continuum. Traditional approach works with the projection of the process to the "current" time plane, losing the details of the time dimension as the result.

    RX works with the projection to some other dimension, capturing the time component as well, so it is no wonder LINQ to RX is a superset of the regular LINQ.

提交回复
热议问题