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 BootstrapBootstrap. channel(Class<? extends Channel> channelClass)BootstrapBootstrap. channelFactory(ChannelFactory<? extends Channel> channelFactory)ChannelFactorywhich is used to createChannelinstances from when callingAbstractBootstrap.bind().BootstrapBootstrap. clone()BootstrapBootstrap. clone(EventLoopGroup group)Returns a deep clone of this bootstrap which has the identical configuration except that it uses the givenEventLoopGroup.BootstrapBootstrap. remoteAddress(String inetHost, int inetPort)BootstrapBootstrap. remoteAddress(InetAddress inetHost, int inetPort)BootstrapBootstrap. remoteAddress(SocketAddress remoteAddress)TheSocketAddressto connect to once theconnect()method is called.BootstrapBootstrap. resolver(AddressResolverGroup<?> resolver)Sets theNameResolverwhich will resolve the address of the unresolved named address.BootstrapBootstrap. validate()
-