As I am using ktor client for networking, is there...
# multiplatform
c
As I am using ktor client for networking, is there a way to directly get the call executed inside a Kotlin Flow or, even better, StateFlow?
m
Aren't ktor methods
suspend
by default?
Flow
doesn't make a lot of sense in the context of a HTTP request since you get single values
5
c
Im consuming a websocket, and using a channel, just ondering if there was a built way to consume it directly as a flow