On this page
Future.microtask factory constructor
Future.microtask(Creates a future containing the result of calling computation
asynchronously with scheduleMicrotask.
If executing computation
throws, the returned future is completed with the thrown error.
If calling computation
returns a Future, completion of the created future will wait until the returned future completes, and will then complete with the same result.
If calling computation
returns a non-future value, the returned future is completed with that value.
Source
factory Future.microtask(FutureOr<T> computation()) {
_Future<T> result = new _Future<T>();
scheduleMicrotask(() {
try {
result._complete(computation());
} catch (e, s) {
_completeWithErrorCallback(result, e, s);
}
});
return result;
}
© 2012 the Dart project authors
Licensed under the Creative Commons Attribution-ShareAlike License v4.0.
https://api.dartlang.org/stable/1.24.3/dart-async/Future/Future.microtask.html