1
2
3
4
5
6
7
8
9
10
11
12
13
| package com.codingapi.tm.netty.service;
|
| import com.alibaba.fastjson.JSONObject;
|
| /**
| * create by lorne on 2017/11/11
| */
| public interface IActionService {
|
|
| String execute(String channelAddress,String key,JSONObject params);
|
| }
|
|