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
Methods in io.netty.bootstrap that return ServerBootstrapModifier and TypeMethodDescription<T> ServerBootstrap
ServerBootstrap.childAttr
(AttributeKey<T> childKey, T value) Set the specificAttributeKey
with the given value on every childChannel
.ServerBootstrap.childHandler
(ChannelHandler childHandler) Set theChannelHandler
which is used to serve the request for theChannel
's.<T> ServerBootstrap
ServerBootstrap.childOption
(ChannelOption<T> childOption, T value) Allow to specify aChannelOption
which is used for theChannel
instances once they get created (after the acceptor accepted theChannel
).ServerBootstrap.clone()
ServerBootstrap.group
(EventLoopGroup group) Specify theEventLoopGroup
which is used for the parent (acceptor) and the child (client).ServerBootstrap.group
(EventLoopGroup parentGroup, EventLoopGroup childGroup) Set theEventLoopGroup
for the parent (acceptor) and the child (client).ServerBootstrap.validate()
Constructors in io.netty.bootstrap with parameters of type ServerBootstrapModifierConstructorDescriptionprivate
ServerBootstrap
(ServerBootstrap bootstrap) (package private)
ServerBootstrapConfig
(ServerBootstrap bootstrap)