What happen if I have multiple middleware (lets say 3 for the exemple), all catching a single action ? Do they trigger in the order defined in the store creation ?
createStore(reducer,applyMiddleware(middle1, middle2, middle3));
middle1 will get triggered first, then middle2, then middle3 ? (when calling next() ) Can I on a specific action force middle3 to be called before middle2 ?