zm
2020-05-18 a18bfacbf56b401f6e0fdae8710fbca4df8cff77
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
package com.codingapi.tm.netty.service.impl;
 
import com.alibaba.fastjson.JSONObject;
import com.codingapi.tm.manager.service.TxManagerService;
import com.codingapi.tm.netty.service.IActionService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
 
/**
 * 检查事务组
 * create by lorne on 2017/11/11
 */
@Service(value = "ckg")
public class ActionCKGServiceImpl implements IActionService{
 
 
    @Autowired
    private TxManagerService txManagerService;
 
    @Override
    public String execute(String channelAddress, String key, JSONObject params ) {
        String res = "";
        String groupId = params.getString("g");
        String taskId = params.getString("t");
        int bs = txManagerService.cleanNotifyTransaction(groupId,taskId);
 
        res = String.valueOf(bs);
        return res;
    }
}