javascript - How to chain dispatch in ngrx? -
eg
this.store.dispatch(this.nowchannellistactions.togglechannel(channel)); this.store.dispatch(this.playersearchactions.searchcurrentquery());
in above code want second dispatch start after completetion of reducers , effects of first. dispatch being asynchronus , yet not returning , not proving callback either, can't figure out how that.
Comments
Post a Comment