Java io.netty.bootstrap ServerBootstrap fields, constructors, methods, implement or subclass

Example usage for Java io.netty.bootstrap ServerBootstrap fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for io.netty.bootstrap ServerBootstrap.

The text is from its open source code.

Subclass

io.netty.bootstrap.ServerBootstrap has subclasses.
Click this link to see all its subclasses.

Field

EventLoopGroupchildGroup
ChannelHandlerchildHandler

Constructor

Method

ServerBootstrapchildAttr(AttributeKey childKey, T value)
Set the specific AttributeKey with the given value on every child Channel .
ServerBootstrapchildOption(ChannelOption childOption, T value)
Allow to specify a ChannelOption which is used for the Channel instances once they get created (after the acceptor accepted the Channel ).
ServerBootstrapclone()
ServerBootstrapgroup(EventLoopGroup parentGroup, EventLoopGroup childGroup)
Set the EventLoopGroup for the parent (acceptor) and the child (client).
ServerBootstrapgroup(EventLoopGroup group)
Specify the EventLoopGroup which is used for the parent (acceptor) and the child (client).
ServerBootstrapvalidate()