Hi everybody , When will a coroutine flow be less ...
# android
m
Hi everybody , When will a coroutine flow be less experimental? If anyone knows please tell me
d
Flow
is not experimental.
Unless you mean the operators, then never, since new experimental operators will come in as the old ones stabilise....
m
@Dominaezzz is correct. Flows are considered stable and fully released at this point. There are a lot of operators (usually included as extension functions) documented here: https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines.flow/-flow/ Some of which are chaining operators which return another Flow object, some of which are terminal operators (which are easy to spot because they are suspending functions and return a value other than another Flow)
m
Oh thanks. It has been misunderstood:)