What data structures do I use to implement the following logic?
- read() is an asynchronous method that queues some workload
- Only one workload may run at a time.
- The first thread to queue a workload becomes the worker thread. It processes all work on the queue before returning. The next thread to invoke read() becomes the new worker thread, and so on...
- If other threads invoke read() while a worker thread is processing the queue, they simply add to the end of the queue and return immediately.
I know how to implement this using a ConcurrentLinkedQueue and AtomicBoolean but I get the feeling there is a better way.
CLARIFICATION: A workload consists of invoking another asynchronous method called read2(). read2() is asynchronous but is not thread-safe. When I say a worker thread "processes the workload" it simply fires the first read operation and returns right away. When read2() completes, it invokes the next operation on the queue and so on. The entire API is asynchronous. As such, I'd like to avoid a dedicated consumer thread (there's no real need for it and it's bad for scalability).
