Async thread pool change for VES heartbeat
[oam/tr069-adapter.git] / ves-agent / src / main / java / org / commscope / tr069adapter / vesagent / async / AsyncThreadPoolConfig.java
1 /*
2  * ============LICENSE_START========================================================================
3  * ONAP : tr-069-adapter
4  * =================================================================================================
5  * Copyright (C) 2020 CommScope Inc Intellectual Property.
6  * =================================================================================================
7  * This tr-069-adapter software file is distributed by CommScope Inc under the Apache License,
8  * Version 2.0 (the "License"); you may not use this file except in compliance with the License. You
9  * may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
14  * either express or implied. See the License for the specific language governing permissions and
15  * limitations under the License.
16  * ===============LICENSE_END=======================================================================
17  */
18
19 package org.commscope.tr069adapter.vesagent.async;
20
21 import java.util.concurrent.Executor;
22 import java.util.concurrent.Executors;
23 import org.springframework.context.annotation.Bean;
24 import org.springframework.context.annotation.Configuration;
25 import org.springframework.scheduling.annotation.EnableAsync;
26
27 @Configuration
28 @EnableAsync
29 public class AsyncThreadPoolConfig {
30
31   @Bean(name = "threadPoolTaskExecutor1")
32   public Executor threadPoolTaskExecutor() {
33     return Executors.newFixedThreadPool(50);
34   }
35
36   @Bean(name = "threadPoolTaskExecutor2")
37   public Executor threadPoolTaskExecutor2() {
38     return Executors.newFixedThreadPool(50);
39   }
40 }