Some Questions about EffectTask with lib tag 0.44.1? #1709
-
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hey @ACFancy! You're not forced to migrate
The fundamental Please let me know if these explanations are not clear or not answering to your questions. |
Beta Was this translation helpful? Give feedback.
Hey @ACFancy!
If you look at #1477, you will see that
Combine
APIs will be slowly phased out from TCA to the profit of Swift concurrency. As a result, you're invited to use async/await variants when possible, andCombine
-flavored APIs have been "softly" deprecated. They don't produce any warnings, but they're not proposed by Xcode code completion anymore.You're not forced to migrate
Effect.merge
andEffect.concatenate
, as these operations are already supported by concurrent API's. The correspondingEffectTask
s will be executed concurrently when merging, or sequentially when concatenating.EffectTask
has only one "free" generic:Action
. The failure is "hardcoded" to always beNever
. This …