gpt4 book ai didi

android - 排序异步任务

转载 作者:行者123 更新时间:2023-11-29 00:42:14 25 4
gpt4 key购买 nike

我知道 http 请求应该作为 AsyncTask 的一部分运行,以使其远离 UI 线程。但是,如果可能需要多个连续的 http 请求,后面的 http 请求依赖于前面的请求,因此需要顺序运行,那该怎么办呢?

在这种情况下,是不是最好把后面的AsyncTasks放在前面的AsyncTasks的onPostExecute中,让它们顺序运行?

或者这是否表明我采用了错误的方法?

最佳答案

要在队列中发出大量 HTTPRequest,试试这个:

 private class QueueExample extends AsyncTask<URL, InputStream, Long> {
protected Long doInBackground(URL... urls) {
SynchronousQueue<URL> queue = new SynchronousQueue<URL>();
for(URL url : urls){
queue.add(url);
}

for (URL url : queue) {
InputStream in = new BufferedInputStream(queue.take().openConnection().getInputStream());
publishProgress(in);
}
}

protected void onProgressUpdate(InputStream... progress) {
doSomethingWithStream(progress[0]);
//Do Something
}

protected void onPostExecute(Long result) {
//Finished
}
}

关于android - 排序异步任务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8639769/

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