ee72515b1aa9c8fae7509e9f50e904eaf08889cd
[externalapi/nbi.git] / src / main / java / org / onap / nbi / apis / serviceorder / workflow / ExecutionTaskProcessorScheduler.java
1 /**
2  * Copyright (c) 2018 Orange
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
5  * in compliance with the License. You may obtain a copy of the License at
6  *
7  * http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software distributed under the License
10  * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
11  * or implied. See the License for the specific language governing permissions and limitations under
12  * the License.
13  */
14 package org.onap.nbi.apis.serviceorder.workflow;
15
16 import java.util.List;
17 import org.onap.nbi.apis.serviceorder.model.orchestrator.ExecutionTask;
18 import org.onap.nbi.apis.serviceorder.repositories.ExecutionTaskRepository;
19 import org.springframework.beans.factory.annotation.Autowired;
20 import org.springframework.context.annotation.Profile;
21 import org.springframework.scheduling.annotation.EnableScheduling;
22 import org.springframework.scheduling.annotation.Scheduled;
23 import org.springframework.stereotype.Service;
24
25 @Profile("default")
26 @Service
27 @EnableScheduling
28 public class ExecutionTaskProcessorScheduler {
29
30   @Autowired
31   ExecutionTaskRepository executionTaskRepository;
32
33   @Autowired
34   SOTaskProcessor soTaskProcessor;
35
36   // Using fixedDelay to mitigate against Scheduler queue backlog with fixedRate
37   @Scheduled(fixedDelayString = "${executionTask.schedule}", initialDelayString = "${executionTask.initial}")
38   private void processExecutionPlan() throws InterruptedException {
39     List<ExecutionTask> taskToExecute = executionTaskRepository.findByReliedTasksIsEmpty();
40     for (ExecutionTask executionTask : taskToExecute) {
41       soTaskProcessor.processOrderItem(executionTask);
42     }
43   }
44 }