Merge "Ensure Leaf value retains Integer type"
[cps.git] / cps-service / src / main / java / org / onap / cps / config / AsyncConfig.java
1 /*
2  * ============LICENSE_START=======================================================
3  * Copyright (c) 2021 Bell Canada.
4  * ================================================================================
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *         http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  * SPDX-License-Identifier: Apache-2.0
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.cps.config;
22
23 import javax.validation.constraints.Min;
24 import lombok.Setter;
25 import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty;
26 import org.springframework.boot.context.properties.ConfigurationProperties;
27 import org.springframework.context.annotation.Bean;
28 import org.springframework.context.annotation.Configuration;
29 import org.springframework.core.task.TaskExecutor;
30 import org.springframework.scheduling.annotation.EnableAsync;
31 import org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor;
32 import org.springframework.validation.annotation.Validated;
33
34 @EnableAsync
35 @Configuration
36 @ConditionalOnProperty(name = "notification.async.enabled", havingValue = "true", matchIfMissing = false)
37 @ConfigurationProperties("notification.async.executor")
38 @Validated
39 @Setter
40 public class AsyncConfig {
41
42     @Min(0)
43     private int corePoolSize = 2;
44     @Min(2)
45     private int maxPoolSize = 10;
46     @Min(0)
47     private int queueCapacity = Integer.MAX_VALUE;
48     private boolean waitForTasksToCompleteOnShutdown = true;
49     private String threadNamePrefix = "Async-";
50
51     /**
52      * Creates TaskExecutor for processing data-updated events.
53      *
54      * @return TaskExecutor
55      */
56     @Bean("notificationExecutor")
57     public TaskExecutor getThreadAsyncExecutorForNotification() {
58         final ThreadPoolTaskExecutor executor = new ThreadPoolTaskExecutor();
59         executor.setCorePoolSize(corePoolSize);
60         executor.setMaxPoolSize(maxPoolSize);
61         executor.setQueueCapacity(queueCapacity);
62         executor.setWaitForTasksToCompleteOnShutdown(waitForTasksToCompleteOnShutdown);
63         executor.setThreadNamePrefix(threadNamePrefix);
64         return executor;
65     }
66
67 }