Is there any support for the `Flow<T>` previ...
# ktor
b
Is there any support for the
Flow<T>
preview available for the clients? If not, any suggestions on how it should be approached to integrate into the existing content transformation work?
g
Just curious, why do you need Flow for the client? isn’t the client support only suspend functions to do requests
b
Yes it has suspend functions, but also has content transformation features which could make it a candidate for first class support of Flow. My sample (which probably should be abstracted from the client) would be to essentially have a lazy channel that would allow me to pass an already-built flow so that credentials stay isolated to a smaller portion of my project
g
Interesting