Say I have a queue full of tasks which I need to submit to an executor service. I want them processed one at a time. The simplest way I can think of is to:
- Take a task from the queue
- Submit it to the executor
- Call .get on the returned Future and block until a result is available
- Take another task from the queue…
However, I am trying to avoid blocking completely. If I have 10,000 such queues, which need their tasks processed one at a time, I’ll run out of stack space because most of them will be holding on to blocked threads.
What I would like is to submit a task and provide a call-back which is called when the task is complete. I’ll use that call-back notification as a flag to send the next task. (functionaljava and jetlang apparently use such non-blocking algorithms, but I can’t understand their code)
How can I do that using JDK’s java.util.concurrent, short of writing my own executor service?
(the queue which feeds me these tasks may itself block, but that is an issue to be tackled later)
Define a callback interface to receive whatever parameters you want to pass along in the completion notification. Then invoke it at the end of the task.
You could even write a general wrapper for Runnable tasks, and submit these to
ExecutorService. Or, see below for a mechanism built into Java 8.With
CompletableFuture, Java 8 included a more elaborate means to compose pipelines where processes can be completed asynchronously and conditionally. Here’s a contrived but complete example of notification.