Spring Boot - Async Processing
Given this Spring Boot configuration snippet, what is the maximum number of threads that can run concurrently?
@Bean
public ThreadPoolTaskExecutor threadPoolTaskExecutor() {
ThreadPoolTaskExecutor executor = new ThreadPoolTaskExecutor();
executor.setCorePoolSize(3);
executor.setMaxPoolSize(6);
executor.setQueueCapacity(10);
executor.initialize();
return executor;
}
