gpt4 book ai didi

java - Volley : Is there a way to check if a request is pending or in progress?

转载 作者:可可西里 更新时间:2023-11-01 16:46:47 25 4
gpt4 key购买 nike

非常简单:

有没有办法判断 Volley 请求当前是否处于待处理/正在进行中?

当然我可以通过不同的回调手动跟踪它的状态,但是有更好的方法吗?

最佳答案

我现在能想到的唯一方法是继承 RequestQueue,并公开最简单的方法:

public boolean contains(Request<?> request) {
return mCurrentRequests.contains(request);
}

但是我将很难创建和配置我的队列,因为我无法调用 Volley.newRequestQueue(Context)

如果没有更好的答案,我会选择这个...:(

关于java - Volley : Is there a way to check if a request is pending or in progress?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26624428/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com