Search code examples
reduxrxjsngrxswitchmapangular-redux

Different between of(...) and [...] in switchMap in effect


For example we have some effect:

...
switchMap(() => of(action1, action2))
...

and

...
switchMap(() => [action1, action2])
...

Do we have any differents?


Solution

  • The second one is correct.

    The first approach are 2 emits, which would notify all subscribers multiple times.