jiazx0107
2025-09-01 ce4f9b9f72a4269a1f25812dadd59bfb92c7b3cf
1
2
3
4
5
6
7
8
9
10
11
12
package com.ld.io.netty.server;
 
import com.ld.io.api.HeartbeatProvider;
import com.ld.io.api.IoSession;
 
public class DefaultHealthProvider implements HeartbeatProvider {
 
    @Override
    public byte[] provide(IoSession ioSession) {
        return "AA".getBytes();
    }
}