Dispatch an action in response to cancellation
问题 I started with the cancellation recipe from the redux-observable docs and want to extend it a bit. Basically I have a scenario where after the cancellation is triggered, using takeUntil I want dispatch another action to cleanup, etc. This is what I came up with so far: https://jsbin.com/zemenu/195/edit?js,output Start a "Fetch User Info" and then hit Cancel. I want it to execute actions in this order: - USER/FETCH - REQUEST/STARTED - USER/CANCELLED - REQUEST/CANCELLED This works in the way I