Open LOG-INFO opened 1 year ago
handler(...)
handler(...)
childHandler(...)
childChannel(XxxChannel.class)
bootstrap.group(ctx.channel().eventLoop());
handler(...)
에 Handler 객체가 아닌 ChannelInitializerImpl
을 넘겨주면 파이프라인 형성 가능EventLoopGroup.shutdownGracefully()
호출 후 blocking
Future<?> future = group.shutdownGracefully();
future.syncUninterruptibly();
Cloneable
인 이유 : 여러 채널을 동일한 설정으로 생성해야하는 경우를 위해 clone()
으로 손쉽게 복사하기 위함
ChannelOption
으로 부트스트랩으로 인해 생성되는 채널에 대한 설정을 기본설정해둘 수 있다
끄적 끄적