Reactive Programming is a programming paradigm oriented around data flows and the propagation of change.
Wiki
Reactive programming is a programming paradigm oriented around data flows and the propagation of change.
This means that it should be possible to express static or dynamic data flows with ease in the programming languages used, and that the underlying execution model will automatically propagate changes through the data flow.
Examples
In a Model-view-controller
architecture, reactive programming can allow changes in the underlying model to automatically be reflected in the view, and vice versa.
Unlike Dataflow programming, reactive programming paradigm includes automatic update of variables if variables are dependent on other variables.