Is it possible to start/stop/resume a redux-observable epic by emitting actions?

Viewed 1009

This question may be about redux-observable or rxjs or both.

I'm looking for a way to start, stop or resume an epic through specific actions. For example, the epic (that's already part of the epic middelware) will be active when the action {type: 'START'} is received but will be inactive when the action {type: 'END'} is received. Is this possible?

1 Answers
Related