I am very confused, and new to @ngrx so please forgive me for not understanding how this is supposed to work.
Let's say I have an effect that is called PlaceOrderEffect
In this effect, I want to process each request in order.
processOrder$ = createEffect(
ofType(OrderActions.PROCESS_ORDER),
//here is where i get confused
concatMap([
this.service.addCrust(),
this.service.addTopings(),
this.service.sendToCook()
this.service.checkOut()
]
)
How can I run these in sequential order and handle the final response?