shikeying
2024-01-11 3b67e947e36133e2a40eb2737b15ea375e157ea0
1
2
3
4
5
6
7
8
9
10
11
package com.walker.tcp.protocol;
 
/**
 * 描述:调整了ProtocolResolver接口支持泛型,所以这里为了老代码通用,单独确定一个字符串类型供子类继续使用
 * @author 时克英
 * @date 2020年8月21日 上午8:49:31
 */
 
public abstract class StringProtocolResolver extends AbstractProtocolResolver<String> {
 
}