Uses of Class
io.netty5.bootstrap.Bootstrap
-
Packages that use Bootstrap Package Description io.netty5.bootstrap The helper classes with fluent API which enable an easy implementation of typical client side and server side channel initialization. -
-
Uses of Bootstrap in io.netty5.bootstrap
Methods in io.netty5.bootstrap that return Bootstrap Modifier and Type Method Description Bootstrap
Bootstrap. channel(Class<? extends Channel> channelClass)
Bootstrap
Bootstrap. channelFactory(ChannelFactory<? extends Channel> channelFactory)
ChannelFactory
which is used to createChannel
instances from when callingAbstractBootstrap.bind()
.Bootstrap
Bootstrap. clone()
Bootstrap
Bootstrap. clone(EventLoopGroup group)
Returns a deep clone of this bootstrap which has the identical configuration except that it uses the givenEventLoopGroup
.Bootstrap
Bootstrap. remoteAddress(String inetHost, int inetPort)
Bootstrap
Bootstrap. remoteAddress(InetAddress inetHost, int inetPort)
Bootstrap
Bootstrap. remoteAddress(SocketAddress remoteAddress)
TheSocketAddress
to connect to once theconnect()
method is called.Bootstrap
Bootstrap. resolver(AddressResolverGroup<?> resolver)
Sets theNameResolver
which will resolve the address of the unresolved named address.Bootstrap
Bootstrap. validate()
-