Higher-Order Reducers
Coming soon! This part of the spec will allow Confluxes to be wrapped in third-party higher-order reducers such as redux-ignore:
import { Enhance, Manage } from 'fluxuate'
import { ignoreActions } from 'redux-ignore'
@Manage('gold')
@Enhance(conflux => ignoreActions(conflux, ['weapons/buy', 'weapons/sell']))
class GoldManager {
...
}
This is not currently implemented.