electron-redux
electron-redux copied to clipboard
Unicast action on main
Now action in main process replayed to all renderers stores. So if one renderer requests ,say,big filtered dataset, it will be send to all renderers and spoil stores with not-requested data putting aside sending a big data via ipc to all renderers.
It would be nice to have something like {scope:unicast}
so action will be re-played only to the renderer that dispatched this action to main. It will reduce ipc transfers and allows to use main process as proxy to database etc