11 releases (breaking)

0.10.2 Aug 17, 2024
0.9.0 Jul 3, 2024

#3 in #redux

Download history 158/week @ 2024-06-07 147/week @ 2024-06-14 30/week @ 2024-06-21 128/week @ 2024-06-28 79/week @ 2024-07-05 10/week @ 2024-07-12 24/week @ 2024-07-19 71/week @ 2024-07-26 30/week @ 2024-08-02 89/week @ 2024-08-09 266/week @ 2024-08-16 51/week @ 2024-08-23 59/week @ 2024-08-30 33/week @ 2024-09-06 46/week @ 2024-09-13 105/week @ 2024-09-20

258 downloads per month

Custom license

44KB
1K SLoC

rs-store

rs-store is a Redux Store written in Rust.

Key Features

Manage and receive notifications of state changes through the Reducer and Subscriber interfaces. Store registers Reducer and Subscriber, dispatches actions to change the state, and sends notifications to subscribers. Store is designed to change states in thread-safe manner.

How to use

rust documentation is available at crates.io and docs.rs.


pub fn main() {
    println!("Hello, Calc!");

    let store = Store::<CalcState, CalcAction>::new(Box::new(CalcReducer::default()));

    store.add_subscriber(Arc::new(CalcSubscriber::default()));
    store.dispatch(CalcAction::Add(1));

    thread::sleep(std::time::Duration::from_secs(1));
    store.add_subscriber(Arc::new(CalcSubscriber::default()));
    store.dispatch(CalcAction::Subtract(1));

    store.stop();
}

Features

  • add thread name
  • subscription to unsubscribe
  • clear subscribers (clear_subscribers)
  • add Thunk action(dispatch_thunk)
  • notify the latest state when a subscriber added
  • add backpressure policy(drop oldest)
  • bounding channel size(sync_channel), dispatch can be failed
  • add scheduler for notification(CurrentThread, ThreadPool)
  • stream (pull model) instead of subscription(push model)
  • stats middleware which can be used to log the state changes
  • add tests

Dependencies

~0.4–0.9MB
~18K SLoC