sleep函数
- Duration duration
在指定的duration
期间休眠。
请谨慎使用此函数,因为在sleep调用阻塞时,无法在isolate中处理任何异步操作。
var duration = const Duration(seconds: 5);
print('Start sleeping');
sleep(duration);
print('5 seconds has passed');
实现
void sleep(Duration duration) {
int milliseconds = duration.inMilliseconds;
if (milliseconds < 0) {
throw new ArgumentError("sleep: duration cannot be negative");
}
if (!_EmbedderConfig._maySleep) {
throw new UnsupportedError(
"This embedder disallows calling dart:io's sleep()");
}
_ProcessUtils._sleep(milliseconds);
}