我有一个抖动的EventChannel EventSink(https://api.flutter.dev/javadoc/io/flutter/plugin/common/EventChannel.EventSink.html),我想在其中写入OKHttp响应的正文。
使用ResponseBody::source
,我得到了一个缓冲源。
将数据从BufferedSource流传输到EventSink的正确方式是什么(无阻塞)?
我可以使用BufferedSource::bytes()
获取完整的BufferedSource,但这并不传输数据,而是完整读取并返回数据。