How can you create/convert an Outputstream to a By...
# ktor
h
How can you create/convert an Outputstream to a ByteWriterChannel? Or a RawSink/Sink using kotlinx-io with Ktor 3?
a
Only by implementing the
ByteWriteChannel
interface at the moment. KTOR-7327 will address this problem.
h
Thanks, that’s exactly what I did.