Uses of Class
io.netty.bootstrap.ServerBootstrap
Packages that use ServerBootstrap
Package
Description
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
Subclasses with type arguments of type ServerBootstrap in io.netty.bootstrapModifier and TypeClassDescriptionclassBootstrapsub-class which allows easy bootstrap ofServerChannelfinal classExposes the configuration of aServerBootstrapConfig.Methods in io.netty.bootstrap that return ServerBootstrapModifier and TypeMethodDescription<T> ServerBootstrapServerBootstrap.childAttr(AttributeKey<T> childKey, T value) Set the specificAttributeKeywith the given value on every childChannel.ServerBootstrap.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).ServerBootstrap.clone()ServerBootstrap.group(EventLoopGroup group) Specify theEventLoopGroupwhich is used for the parent (acceptor) and the child (client).ServerBootstrap.group(EventLoopGroup parentGroup, EventLoopGroup childGroup) Set theEventLoopGroupfor the parent (acceptor) and the child (client).ServerBootstrap.validate()