What is the default execution policy on Executors.newSingleThreadExecutor()? Is this documented?
Executors.newSingleThreadExecutor()
I need to guarantee FIFO.
JavaDoc for Executors.newSingleThreadExecutor() says:
tasks are guaranteed to execute sequentially
If this is not enough for you, have a look at the sources, it uses LinkedBlockingQueue behind the scenes:
LinkedBlockingQueue
This queue orders elements FIFO (first-in-first-out).
Sign up using Google
Sign up using Facebook
Sign up using Stack Exchange
By posting your answer, you agree to the privacy policy and terms of service.
tagged
asked
1 year ago
viewed
157 times
active