poll-reactive 0.1.0

A minimalistic poll-based reactive library
Documentation
  • Coverage
  • 0%
    0 out of 10 items documented0 out of 0 items with examples
  • Size
  • Source code size: 23.27 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.98 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • bluenote10

poll-reactive

A minimalistic poll-based reactive library.

Instead of push-based reactivity, it opts for pull-based reactivity, i.e., components have to poll. This mainly make sense for e.g. game engines where components have a "run once per frame" method anyway. In return it comes with a number of simplifications like avoiding the need for 'static closures, and a "natural" batching.