RxJS

from Wikipedia, the free encyclopedia

RxJS is a program library for reactive programming . The programming is asynchronous and event-based using observable sequences and LINQ-type query operators.

Data sequences can take various forms such as data streams from files or from web services, web service requests, system notifications or a series of events such as user input.

Reactive Extensions presents all of these data sequences as observable sequences. An application can register with these observable sequences to receive asynchronous notifications when new data arrives.

Web links

  • RxJS Reactive Extensions library for asynchronous programming with observable sequences.