|
大家好:
我的同事[size=12.727272033691406px]Seth Ladd 今天告诉我们,DART语言今天发布了一个新的功能:Streams API。 这个开发接口把callbacks, events, 以及 async notifications 整合到一个统一的 API 中。它的使用是用类似如下的代码:
void main() {
new File('numbers.dat').openForRead()
.transform(new Utf8Decoder())
.transform(new LineTransformer())
.mappedBy(int.parse)
.mappedBy(fib)
.subscribe(onData: print);
}
Where openForRead returns a Stream.
更多的信息请看Dart 语言的更新通知:http://news.dartlang.org/2012/11/introducing-new-streams-api.html
谢谢!
Bill
|
|