Is it recommended to use coroutine methods marked ...
# coroutines
c
Is it recommended to use coroutine methods marked with
ObsoleteCoroutinesApi
on our production apps? I'll like to use something around actors but worried about this annotation
z
I'm using it (actor) also. I guess it will be some API change only in future. Even if it's removed you can add actor code back (https://github.com/Kotlin/kotlinx.coroutines/blob/master/core/kotlinx-coroutines-core/src/channels/Actor.kt).
Me too 🙂
g
I think eventually old actors will be replaced with type safe actors https://github.com/Kotlin/kotlinx.coroutines/pull/485