我陷入了内存泄漏。我写了以下示例,它不断增加内存使用量:
import 'dart:io';
import 'dart:async';
import 'dart:utf';
Future<Stream<List<int>>> readFile2Stream(String path){
File f = new File(path);
return f.exists().then((bool exists){
if( !exists ){
return new Stream<List<int>>.fromIterable([encodeUtf8("Could not find $path")]);
}else{
return f.openRead();
}
});
}
void readFile(String path){
readFile2Stream(path).then(
(Stream<List<int>> data){
data.listen((List<int> data){
print(data);
},
onError: (dynamic error){
print("Error: $error");
},
onDone: (){
print("Done");
});
}
);
}
void main() {
Timer t = new Timer.periodic(new Duration(seconds:2),(Timer it){
readFile("memleaktest.dart");
});
}
有人可以出于某种原因给我一个提示吗?我没有任何线索:-(
一些小的附加问题:
有没有办法通过摆脱返回类型的 Future 封装来简化这个示例?我不想使用 File.existsSync(),而是想将 Future 处理添加到 Stream 处理之前。