使用a4j:poll检查已下载的文件数

时间:2013-09-16 17:56:23

标签: jsf richfaces polling ajax4jsf

所以我试图用a4j:poll来从循环中轮询一个计数器。

所以如果我有这样的循环:

while(fileCount != 100){
     //count the # of files in dir, assuming these files are being downloaded to the dir
     //so the # of files is always changing
}

我的问题:是否可以使用a4j:poll来检查到目前为止已经下载了多少文件,即使循环仍在执行?

1 个答案:

答案 0 :(得分:2)

那是不可能的。 (甚至不通过循环内部更新组件)

你的循环有什么作用?如果它只是检查文件计数然后它不必要地运行,你可以使用轮询检查每个间隔的文件计数。