Dart超时等待未来 [英] Dart timeout on await Future

查看:69
本文介绍了Dart超时等待未来的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何使 await future 的持续时间不超过5秒?我需要它,因为在某些网络操作中,该连接有时会产生静默错误.因此,我的客户只等了几个小时而没有任何回应.相反,我希望它在客户端等待5秒以上时触发错误

How to make a await future not last more than 5 seconds ? I need it because in some networking operation, the connection is sometimes producing silent error. Hence my client just wait for hours with no response. Instead, I want it trigger an error when the clients waits for more than 5 seconds

我的代码可以触发错误,但仍在等待中

My code can trigger the error but it is still waiting

Future shouldnotlastmorethan5sec() async {
  Future foo = Future.delayed(const Duration(seconds: 10));;
  foo.timeout(Duration(seconds: 5), onTimeout: (){
    //cancel future ??
    throw ('Timeout');
  });
  await foo;
}
Future test() async {
  try{
    await shouldnotlastmorethan5sec(); //this shoud not last more than 5 seconds
  }catch (e){
    print ('the error is ${e.toString()}');
  }
}
test();

推荐答案

调用

When you call Future.timeout you need to use the return value to get the correct behaviour. In your case:

Future shouldnotlastmorethan5sec() {
  Future foo = Future.delayed(const Duration(seconds: 10));
  return foo.timeout(Duration(seconds: 5), onTimeout: (){
    //cancel future ??
    throw ('Timeout');
  });
}

这篇关于Dart超时等待未来的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆