Each context has its own dispatcher to ensure action events are isolated in multi context environments. This method will return the dispatcher for the context.

Stores, actions and react components abstract the dispatcher and in most cases you would not need to deal with the dispatcher directly.

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

👍

On to dehydrate()