Home / cs-notes / Architecture / Components / Netty / Summary / server / accept
- super(null, channel, SelectionKey.OP_ACCEPT); - AbstractNioMessageChannel / NioServerSocketChannel
- super(parent, ch, SelectionKey.OP_READ); - AbstractNioByteChannel / NioSocketChannel
protected AbstractNioChannel(Channel parent, SelectableChannel ch, int readInterestOp) {
super(parent);
this.ch = ch;
this.readInterestOp = readInterestOp;