yangys
2024-09-27 26f8e5990686bdba2119024a260d986266506757
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.qianwen.mdc.collect.handler;
 
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.stereotype.Component;
 
import com.qianwen.mdc.collect.dto.PackedTelemetryData;
 
@Component
public class CountDataHandler implements TelemetryDataHandler {
    private static final Logger log = LoggerFactory.getLogger(CountDataHandler.class);
 
    @Override
    public void handleData(PackedTelemetryData data) {
        /*
        WorkstationOutput workstationOutput = TelemetryOutputWrapper.build().entityVO(data);
        IOutputAggregateService outputAggregateService = (IOutputAggregateService) SpringUtil.getBean(IOutputAggregateService.class);
        outputAggregateService.outputRealTimeAggregate(workstationOutput);
        */
        //log.info("产量 实时聚合完成:数据{} ", workstationOutput);
    }
}