| 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.
|
| Modifier and Type | Method and Description |
|---|---|
ServerBootstrap |
ServerBootstrap.channel(ServerChannel channel) |
ServerBootstrap |
ServerBootstrap.childHandler(ChannelHandler childHandler) |
<T> ServerBootstrap |
ServerBootstrap.childOption(ChannelOption<T> childOption,
T value) |
ServerBootstrap |
ServerBootstrap.group(EventLoopGroup group) |
ServerBootstrap |
ServerBootstrap.group(EventLoopGroup parentGroup,
EventLoopGroup childGroup) |
ServerBootstrap |
ServerBootstrap.handler(ChannelHandler handler) |
ServerBootstrap |
ServerBootstrap.localAddress(InetAddress host,
int port) |
ServerBootstrap |
ServerBootstrap.localAddress(int port) |
ServerBootstrap |
ServerBootstrap.localAddress(SocketAddress localAddress) |
ServerBootstrap |
ServerBootstrap.localAddress(String host,
int port) |
<T> ServerBootstrap |
ServerBootstrap.option(ChannelOption<T> parentOption,
T value) |
Copyright © 2008-2012 The Netty Project. All Rights Reserved.