URLFetchService 因超时而引发哪个异常?
Google App Engine UrlFetchService 有一个 setDeadline FetchOption,假设在触发时引发异常。
应用程序可以指定拨打电话时等待的最长时间。如果超过最大等待时间,调用将引发异常。
哪个例外?
如果是 IOException,我应该如何区分截止时间超时和其他原因?
The Google App Engine UrlFetchService has a setDeadline FetchOption which is suppose to raise an exception when tripped.
The app can specify the maximum amount of time to wait when it makes the call. If the maximum wait time is exceeded, the call raises an exception.
Which Exception?
If it is an IOException, how should I discriminate between a deadline timeout and other causes?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将引发 google.appengine.api.urlfetch.DownloadError。
A google.appengine.api.urlfetch.DownloadError will be raised.
找到下面由 urlfetch 服务定义/引发的异常列表。
不确定 ApiDeadlineExceededException 是否是这个异常。
Found the list of exceptions below that are defined/thrown by the urlfetch service.
Not sure if ApiDeadlineExceededException is the one.