wjc
2025-04-24 8a249407f9a91b696b88d74eea0fbf789d0ee6a4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.hdl.sdk.link.core.protocol;
 
 
import com.hdl.sdk.link.socket.bean.Packet;
import com.hdl.sdk.link.socket.codec.MessageToByteEncoder;
 
/**
 * Created by Tong on 2021/9/22.
 * link协议合包
 */
public class LinkMessageEncoder extends MessageToByteEncoder {
 
    @Override
    protected Packet encode(Packet packet) throws Exception {
        return packet;
    }
 
}