Global state management for GTK apps in redux style.
A State can be any kind of data structure an application is based on. For a 'counter' app it might be a struct with a single u32 field. Actions represent the possible features of the app affecting the state. They should be enums.
gstore works with two threads: The main UI thread and a background thread for the reducers.
gstore only uses std::sync::mpsc::{Receiver, Sender}
for the communication between these threads.
The gtk feature provides a small facade to a bootstrap gtk+libhandy app. It does so by polling every few milliseconds for new actions from the background thread. Thus the UI thread is never blocked.
```rust
extern crate lazy_static;
use std::rc::Rc; use std::sync::Mutex; use gstore::{ combine_reducers, Store };
struct State { count: u32, }
enum Action { Increment, Decrement, Shutdown, }
lazy_static! {
static ref STATE: Mutex
fn main() {
let mutex = Mutex::new(State { count: 0 });
let store: Rc
gstore is distributed under the terms of the MIT license. See LICENSE for details.
Dan Abramov eveyone who invented/contributes to Redux: https://redux.js.org/.
Thanks for inventing redux.