concatenate(with:)

Concatenates this effect and another into a single effect that first runs this effect, and after it completes or is cancelled, runs the other.

Effect.swift:313
func concatenate(with other: Self) -> Effect<Action>

Parameters

other

Another effect.

Returns

An effect that runs this effect, and after it completes or is cancelled, runs the other.