Crates.io | poll-reactive |
lib.rs | poll-reactive |
version | 0.1.0 |
source | src |
created_at | 2024-03-31 09:32:21.860391 |
updated_at | 2024-03-31 09:32:21.860391 |
description | A minimalistic poll-based reactive library |
homepage | |
repository | |
max_upload_size | |
id | 1191568 |
size | 23,585 |
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.