Uses of Class
io.netty.bootstrap.ServerBootstrap
-
Packages that use ServerBootstrap Package Description io.netty.bootstrap The helper classes with fluent API which enable an easy implementation of typical client side and server side channel initialization. -
-
Uses of ServerBootstrap in io.netty.bootstrap
Methods in io.netty.bootstrap that return ServerBootstrap Modifier and Type Method Description <T> ServerBootstrapServerBootstrap. childAttr(AttributeKey<T> childKey, T value)Set the specificAttributeKeywith the given value on every childChannel.ServerBootstrapServerBootstrap. childHandler(ChannelHandler childHandler)Set theChannelHandlerwhich is used to serve the request for theChannel's.<T> ServerBootstrapServerBootstrap. childOption(ChannelOption<T> childOption, T value)Allow to specify aChannelOptionwhich is used for theChannelinstances once they get created (after the acceptor accepted theChannel).ServerBootstrapServerBootstrap. clone()ServerBootstrapServerBootstrap. group(EventLoopGroup group)Specify theEventLoopGroupwhich is used for the parent (acceptor) and the child (client).ServerBootstrapServerBootstrap. group(EventLoopGroup parentGroup, EventLoopGroup childGroup)Set theEventLoopGroupfor the parent (acceptor) and the child (client).ServerBootstrapServerBootstrap. validate()
-