/** * Create a new instance */ public NioSctpServerChannel() { super(null, newSocket(), SelectionKey.OP_ACCEPT); config = new DefaultSctpServerChannelConfig(this, javaChannel()); }
/** * Create a new instance */ public NioSctpServerChannel(EventLoop eventLoop, EventLoopGroup childGroup) { super(null, eventLoop, childGroup, newSocket(), SelectionKey.OP_ACCEPT); config = new DefaultSctpServerChannelConfig(this, javaChannel()); }