Future
Let's change the code from the previous section into async, as follows:
import 'dart:io'; main() { File file = new File("data.txt"); file.open().then(processFile); } processFile(RandomAccessFile file) { file.length().then((int length) { file.read(length).then(readFile).whenComplete(() { file.close(); }); }); } readFile(List<int> content) { String contentAsString = new String.fromCharCodes(content); print("Content: $contentAsString"); }
As you can see, the Future class is a proxy for an initially unknown result and returns a value instead of calling a callback function. Future
can be created by itself or with Completer
. Different ways of creating Future
must be used in different cases. The separation of concerns between Future
and Completer ...
Get Dart: Scalable Application Development now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.