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.
|
io.netty.testsuite.transport.sctp |
Test suite classes for sctp transport
|
io.netty.testsuite.transport.socket |
Test suite classes for socket
|
Modifier and Type | Method and Description |
---|---|
<T> ServerBootstrap |
ServerBootstrap.childAttr(AttributeKey<T> childKey,
T value)
Set the specific
AttributeKey with the given value on every child Channel . |
ServerBootstrap |
ServerBootstrap.childHandler(ChannelHandler childHandler)
Set the
ChannelHandler which is used to serve the request for the Channel 's. |
<T> ServerBootstrap |
ServerBootstrap.childOption(ChannelOption<T> 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 ). |
ServerBootstrap |
ServerBootstrap.clone() |
ServerBootstrap |
ServerBootstrap.group(EventLoopGroup group)
Specify the
EventLoopGroup which is used for the parent (acceptor) and the child (client). |
ServerBootstrap |
ServerBootstrap.group(EventLoopGroup parentGroup,
EventLoopGroup childGroup)
Set the
EventLoopGroup for the parent (acceptor) and the child (client). |
ServerBootstrap |
ServerBootstrap.validate() |
Modifier and Type | Method and Description |
---|---|
protected List<TestsuitePermutation.BootstrapComboFactory<ServerBootstrap,Bootstrap>> |
AbstractSctpTest.newFactories() |
Modifier and Type | Method and Description |
---|---|
protected void |
AbstractSctpTest.configure(ServerBootstrap serverBootstrap,
Bootstrap bootstrap,
ByteBufAllocator allocator) |
void |
SctpEchoTest.testSimpleEcho(ServerBootstrap sb,
Bootstrap cb) |
void |
SctpEchoTest.testSimpleEchoUnordered(ServerBootstrap sb,
Bootstrap cb) |
Modifier and Type | Method and Description |
---|---|
protected List<TestsuitePermutation.BootstrapFactory<ServerBootstrap>> |
AbstractServerSocketTest.newFactories() |
protected List<TestsuitePermutation.BootstrapComboFactory<ServerBootstrap,Bootstrap>> |
AbstractSocketTest.newFactories() |
List<TestsuitePermutation.BootstrapFactory<ServerBootstrap>> |
SocketTestPermutation.serverSocket() |
List<TestsuitePermutation.BootstrapComboFactory<ServerBootstrap,Bootstrap>> |
SocketTestPermutation.socket() |
Copyright © 2008–2016 The Netty Project. All rights reserved.