Not really, but we're trying to back port new APIs as much as possible
d
Dirk
09/21/2022, 10:55 AM
I have a small question about the new version:
For the effects, context receivers are used (context(EffectScope<DomainError>)). I have assumed so far that this feature is still experimental and cannot be used productively.
Do I have any old information on this or have I misunderstood this in the Kotlin documentation?
a
Alejandro Serrano Mena
09/21/2022, 12:18 PM
context receivers are still experimental, you’re right, which is a bit of a bummer
you can still use it in the “older” way and write
suspend fun EffectScope<DomainError>.thingThatMayFail()