If you write your own `Body` / wrapper, you can ac...
# kotlin-fuel
d
If you write your own
Body
/ wrapper, you can actually make the entire thing suspend when it is waiting for more data or whatever:
Copy code
suspend {
  val streamThatIsNotClosedAndActuallyTheIncomingStream = response.body.toStream()
}