I am just starting with ngrx/store in an Angular-2-Project. My question concerns the distribution of actions through the dispatch-method of the store: Will the action be passed through all reducers? That would mean that the action-type would have to be globally unique? Is this correct?
I am asking this question because in some tutorials the types of the actions are quite short strings, as if they were somewhat locally limitted. But in case they are global, one should have some sort of prefix_namespacing, right?
Thanks!