Question: I have a Java project (Java 8) that should execute a task every 10ms. I use java ScheduledExecutorService to run the task: The QueueTask extends Runnable and polls from a queue – not taking more than 10ms. Every run ...
Question: I am creating a pool of 10 threads Each thread runs for 3 seconds I set the startup period of each task to 0.5 seconds The question is, if the pool consists of 10 threads, and the startup period ...