Executor has max size of 1?
executor.setCorePoolSize(1);
executor.setMaxPoolSize(1);
I want to create a separate executor for each service with max thread pool of 1, it makes me able to run 3 services in parallel with 1 copy of each, just like I need
Обсуждают сегодня