Register a handler that will be notified on every action, returns a token to be used to unregister the handler

var context = fluxapp.createContext();
var dispatcher = fluxapp.getDispatcher();

var token = dispatcher.register(function() {
  // called on each action type
});

📘

On to unregister(token)