Example usage for Java io.netty.bootstrap ServerBootstrap fields, constructors, methods, implement or subclass
The text is from its open source code.
EventLoopGroup | childGroup |
ChannelHandler | childHandler |
ServerBootstrap | childAttr(AttributeKey Set the specific AttributeKey with the given value on every child Channel . |
ServerBootstrap | childOption(ChannelOption Allow to specify a ChannelOption which is used for the Channel instances once they get created (after the acceptor accepted the Channel ). |
ServerBootstrap | clone() |
ServerBootstrap | group(EventLoopGroup parentGroup, EventLoopGroup childGroup) Set the EventLoopGroup for the parent (acceptor) and the child (client). |
ServerBootstrap | group(EventLoopGroup group) Specify the EventLoopGroup which is used for the parent (acceptor) and the child (client). |
ServerBootstrap | validate() |