使用 Future.asStream
和 Stream.fromFeature
获取流之间有什么区别吗?
在一个之上使用另一个有什么利弊吗?
最佳答案
其实是完全一样的。我刚刚检查了将来的实现,并且Future.asStream使用Stream.fromFeature:
Stream<T> asStream() => new Stream<T>.fromFuture(this);
您可以在此处https://github.com/dart-lang/sdk/blob/master/sdk/lib/async/future_impl.dart进行检查。
希望能帮助到你!
关于flutter - 将Future转换为Stream:Future.asStream()vs Stream.fromFeature(…),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/59394985/