Skip to content

Commit

Permalink
feature: 原子操作能力支持滚动执行 TencentBlueKing#446
Browse files Browse the repository at this point in the history
定义web API
  • Loading branch information
wangyu096 committed Jan 4, 2022
1 parent 06f34af commit f22b14a
Show file tree
Hide file tree
Showing 4 changed files with 442 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,15 +57,16 @@
@Component
@EnableBinding({TaskProcessor.class})
@Slf4j
public class TaskListener {
public class JobListener {

private final TaskExecuteControlMsgSender taskExecuteControlMsgSender;
private final StatisticsService statisticsService;
private final TaskInstanceService taskInstanceService;

@Autowired
public TaskListener(TaskExecuteControlMsgSender taskExecuteControlMsgSender,
StatisticsService statisticsService, TaskInstanceService taskInstanceService) {
public JobListener(TaskExecuteControlMsgSender taskExecuteControlMsgSender,
StatisticsService statisticsService,
TaskInstanceService taskInstanceService) {
this.taskExecuteControlMsgSender = taskExecuteControlMsgSender;
this.statisticsService = statisticsService;
this.taskInstanceService = taskInstanceService;
Expand Down
Loading

0 comments on commit f22b14a

Please sign in to comment.