Can someone confirm if there's official support fo...
# spring
b
Can someone confirm if there's official support for coroutine and if it's safe to use it in production? Or any coroutine to FLux convertor?
s
Official support target in Spring Framework 5.2 / Boot 2.2. I would not advise to use that in production yet since Channel API is still experimental and will change significantly.
You can use
org.jetbrains.kotlinx:kotlinx-coroutines-reactor
to do manual conversion if you really want them.
But I would advise to wait proper cold stream support and official Spring integration
2
b
thanks