I have some use case which join* methods can't cover.
For example, I have action1 and action2 and want to trigger when both actions get emitted. This is surely get covered by join* methods. But when action2 is an { action | store } which gets called very often over the lifecycle, it does not work like what I expect.
I would like to just use listenOnce type of method inside action1. this is more sounds like a workaround, but it could have more use case I think.
I have some use case which
join*
methods can't cover.For example, I have
action1
andaction2
and want to trigger when both actions get emitted. This is surely get covered byjoin*
methods. But whenaction2
is an { action | store } which gets called very often over the lifecycle, it does not work like what I expect.I would like to just use
listenOnce
type of method insideaction1
. this is more sounds like a workaround, but it could have more use case I think.