| Crates.io | rx_core_notification_store |
| lib.rs | rx_core_notification_store |
| version | 0.2.0 |
| created_at | 2026-01-19 07:23:26.453843+00 |
| updated_at | 2026-01-24 15:00:55.457309+00 |
| description | Stateful notification stores for rx_core |
| homepage | https://github.com/AlexAegis/rx_bevy |
| repository | https://github.com/AlexAegis/rx_bevy |
| max_upload_size | |
| id | 2053934 |
| size | 16,440 |
This crate defines stateful storage of SubscriberNotifications for rx_core
crates. Used when the state of an upstream source must be tracked based solely
on the events received from it.
The NotificationQueue allows queuing notifications for uses where they might
be consumed more slowly than they are received. The queue also deals with
overflow by dropping either the oldest value or ignoring the next one once a
limit is reached.
The queue only reflects the state of the front notification and updates as notifications are consumed.