Reactive

From HaskellWiki
Revision as of 10:39, 17 July 2011 by Lemming (talk | contribs) (Category:Reactivity removed)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search


Abstract

Reactive is a simple foundation for programming reactive systems functionally. Like Fran/FRP, Reactive has a notions of (reactive) behaviors and events. Some unusual features:

  • Much of the original interface is replaced by instances of standard type classes. In most cases, the denotational semantics of these instances is simple and inevitable, following from the principle of type class morphisms.
  • The original idea of reactive behaviors is composed out of two simple notions:
    • Reactive values are temporally discrete and reactive. They have a purely data representation, and so cache for free.
    • Time functions are temporally continuous and non-reactive.
  • Reactive provides and builds on functional futures, which are time/value pairs with several handy type class instances. Futures allow one to conveniently compute with values before they can be known, with a simple, purely functional semantics (no IO). Futures are polymorphic over both values and time, requiring only that time is ordered.
  • A particularly useful type of time, based on Warren Burton's improving values, reveals partial information in the form of lower bounds and minima, before the times can be known precisely. (Semantically non-flat.)
  • Improving values are implemented on top of a semantically simple unambiguous choice operator, unamb. Although unamb is built on Concurrent Haskell threads, the scheduler nondeterminism does not leak through (assuming the argument-compatibility precondition holds).
  • Reactive manages (I hope) to get the efficiency of data-driven computation with a (sort-of) demand-driven architecture. For that reason, Reactive is garbage-collector-friendly. (GC favors demand-driven computation.)


The inspiration for Reactive was Mike Sperber's Lula implementation of FRP. Mike used blocking threads, which I had never considered for FRP before a conversation with him at ICFP 2007. While playing with the idea, I realized that I could give a very elegant and efficient solution to caching.

Besides this wiki page, here are more ways to find out about and get involved with Reactive:

Reactive is intended to be used with a variety of "legacy" (imperative) libraries for graphics, GUI, robotics, web services, automatic recompilation and re-execution, etc. For an example of how to wrap up such libraries for use with Reactive, see the reactive-glut project.

The reactive-fieldtrip project connects Reactive and FieldTrip.


This page replaces old-reactive.