I'm working on Chrome Extension using React.js and Reflux. Now I need to notify all parts of extension about changes when store is updated with one callback.
Something like:
function(newStore){
chrome.runtime.sendMessage({action: 'updateStore', store: newStore});
}
Where is the point in Reflux for adding such callback?