xuhy
2025-01-08 831ceef420cc1410c143568bd6f9d42e801f7c82
1
2
3
4
5
6
7
8
9
package com.ruoyi.admin.netty;
 
import io.netty.channel.group.ChannelGroup;
import io.netty.channel.group.DefaultChannelGroup;
import io.netty.util.concurrent.GlobalEventExecutor;
 
public class Global {
    public static ChannelGroup group = new DefaultChannelGroup(GlobalEventExecutor.INSTANCE);
}