更好地控制优先工作队列
More control over priority-job-queue
所以,我已经实现了 priority-job-queue
,它有完整的文档并且满足我的所有要求。虽然我有一些困难。根据客户的要求,我不得不将网络调用分为两部分,离线(使用 priority-job-queue
排队的服务器调用)和 运行-时间(即时服务器调用)。简而言之,我想要完成的是在执行即时 运行 调用(独立于 priority-job-queue
)之前执行所有排队的服务器调用。有什么办法可以处理这种情况。如果有任何帮助,我将不胜感激。
NOTE: I know a method called JobManager.count()
, but after reading
this post
(https://github.com/yigit/android-priority-jobqueue/issues/193), I got
confused a little bit if it really returns count of pending jobs or
not?
为什么不直接给这些即时调用更高的优先级并运行它们也使用优先级作业队列?
所以,我已经实现了 priority-job-queue
,它有完整的文档并且满足我的所有要求。虽然我有一些困难。根据客户的要求,我不得不将网络调用分为两部分,离线(使用 priority-job-queue
排队的服务器调用)和 运行-时间(即时服务器调用)。简而言之,我想要完成的是在执行即时 运行 调用(独立于 priority-job-queue
)之前执行所有排队的服务器调用。有什么办法可以处理这种情况。如果有任何帮助,我将不胜感激。
NOTE: I know a method called
JobManager.count()
, but after reading this post (https://github.com/yigit/android-priority-jobqueue/issues/193), I got confused a little bit if it really returns count of pending jobs or not?
为什么不直接给这些即时调用更高的优先级并运行它们也使用优先级作业队列?