https://kotlinlang.org logo
#coroutines
Title
# coroutines
d

darkmoon_uk

09/12/2019, 11:02 AM
Any word when
Flow
and associated API's are likely to leave 'experimental'? Is it too bad to admit I've got production code peppered with Experimental annotations? At least I haven't found bugs with it yet! 😅
e

elizarov

09/12/2019, 11:40 AM
Most of it is already stable (non-experimental) in
1.3.0
. Some operators are still being stabilized. Which one are you interested in, in particular?
s

sdeleuze

09/12/2019, 12:22 PM
Sorry to hijack the thread, but the one I would be interested are
Publisher<T>.asFlow()
,
Flow<T>.asFlux()
(since we are forced to publish experimental APIs due to these extensions experimental status).
d

darkmoon_uk

09/12/2019, 1:45 PM
Same;
.asFlow()
is one we are using a lot.
e

elizarov

09/12/2019, 3:57 PM
These are on track to be stable soon, no planned changes or know problems so far.
👍 3
4 Views