I am looking for a WorkQueue API offering the following features:
java.util.Queue- offers (optional) Set-semantic
- single and batch processing
- concurrency (of course)
- Planning
- various processing policies
- wait for the next scheduled execution
- preliminary process if the packet size matches
- deferred processing (minimum time in queue, before processing)
- persistence (optional)
There are many interesting implementations in jdk, for example. java.util.DelayQueue which I could use. I just wanted to make sure that I was not reinventing the wheel.
java android scheduled-tasks android-asynctask task-queue
whiskeysierra
source share