- java.lang.Object
-
- io.netty5.bootstrap.AbstractBootstrap<Bootstrap,Channel,ChannelFactory<? extends Channel>>
-
- io.netty5.bootstrap.Bootstrap
-
- All Implemented Interfaces:
Cloneable
public class Bootstrap extends AbstractBootstrap<Bootstrap,Channel,ChannelFactory<? extends Channel>>
ABootstrapthat makes it easy to bootstrap aChannelto use for clients.The
AbstractBootstrap.bind()methods are useful in combination with connectionless transports such as datagram (UDP). For regular TCP connections, please use the providedconnect()methods.
-
-
Constructor Summary
Constructors Constructor Description Bootstrap()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Bootstrapchannel(Class<? extends Channel> channelClass)BootstrapchannelFactory(ChannelFactory<? extends Channel> channelFactory)ChannelFactorywhich is used to createChannelinstances from when callingAbstractBootstrap.bind().Bootstrapclone()Returns a deep clone of this bootstrap which has the identical configuration.Bootstrapclone(EventLoopGroup group)Returns a deep clone of this bootstrap which has the identical configuration except that it uses the givenEventLoopGroup.BootstrapConfigconfig()Returns theAbstractBootstrapConfigobject that can be used to obtain the current config of the bootstrap.Future<Channel>connect()Connect aChannelto the remote peer.Future<Channel>connect(String inetHost, int inetPort)Connect aChannelto the remote peer.Future<Channel>connect(InetAddress inetHost, int inetPort)Connect aChannelto the remote peer.Future<Channel>connect(SocketAddress remoteAddress)Connect aChannelto the remote peer.Future<Channel>connect(SocketAddress remoteAddress, SocketAddress localAddress)Connect aChannelto the remote peer.BootstrapremoteAddress(String inetHost, int inetPort)BootstrapremoteAddress(InetAddress inetHost, int inetPort)BootstrapremoteAddress(SocketAddress remoteAddress)TheSocketAddressto connect to once theconnect()method is called.Bootstrapresolver(AddressResolverGroup<?> resolver)Sets theNameResolverwhich will resolve the address of the unresolved named address.Bootstrapvalidate()Validate all the parameters.-
Methods inherited from class io.netty5.bootstrap.AbstractBootstrap
attr, bind, bind, bind, bind, bind, createUnregistered, group, group, handler, localAddress, localAddress, localAddress, localAddress, option, register, toString
-
-
-
-
Method Detail
-
resolver
public Bootstrap resolver(AddressResolverGroup<?> resolver)
Sets theNameResolverwhich will resolve the address of the unresolved named address.- Parameters:
resolver- theNameResolverfor thisBootstrap; may benull, in which case a default resolver will be used- See Also:
DefaultAddressResolverGroup
-
remoteAddress
public Bootstrap remoteAddress(SocketAddress remoteAddress)
TheSocketAddressto connect to once theconnect()method is called.
-
remoteAddress
public Bootstrap remoteAddress(String inetHost, int inetPort)
- See Also:
remoteAddress(SocketAddress)
-
remoteAddress
public Bootstrap remoteAddress(InetAddress inetHost, int inetPort)
- See Also:
remoteAddress(SocketAddress)
-
channel
public Bootstrap channel(Class<? extends Channel> channelClass)
TheClasswhich is used to createChannelinstances from. You either use this orchannelFactory(ChannelFactory)if yourChannelimplementation has no no-args constructor.
-
channelFactory
public Bootstrap channelFactory(ChannelFactory<? extends Channel> channelFactory)
ChannelFactorywhich is used to createChannelinstances from when callingAbstractBootstrap.bind(). This method is usually only used ifchannel(Class)is not working for you because of some more complex needs. If yourChannelimplementation has a no-args constructor, its highly recommend to just usechannel(Class)to simplify your code.
-
connect
public Future<Channel> connect(String inetHost, int inetPort)
Connect aChannelto the remote peer.
-
connect
public Future<Channel> connect(InetAddress inetHost, int inetPort)
Connect aChannelto the remote peer.
-
connect
public Future<Channel> connect(SocketAddress remoteAddress)
Connect aChannelto the remote peer.
-
connect
public Future<Channel> connect(SocketAddress remoteAddress, SocketAddress localAddress)
Connect aChannelto the remote peer.
-
validate
public Bootstrap validate()
Description copied from class:AbstractBootstrapValidate all the parameters. Sub-classes may override this, but should call the super method in that case.- Overrides:
validatein classAbstractBootstrap<Bootstrap,Channel,ChannelFactory<? extends Channel>>
-
clone
public Bootstrap clone()
Description copied from class:AbstractBootstrapReturns a deep clone of this bootstrap which has the identical configuration. This method is useful when making multipleChannels with similar settings. Please note that this method does not clone theEventLoopGroupdeeply but shallowly, making the group a shared resource.- Specified by:
clonein classAbstractBootstrap<Bootstrap,Channel,ChannelFactory<? extends Channel>>
-
clone
public Bootstrap clone(EventLoopGroup group)
Returns a deep clone of this bootstrap which has the identical configuration except that it uses the givenEventLoopGroup. This method is useful when making multipleChannels with similar settings.
-
config
public final BootstrapConfig config()
Description copied from class:AbstractBootstrapReturns theAbstractBootstrapConfigobject that can be used to obtain the current config of the bootstrap.- Specified by:
configin classAbstractBootstrap<Bootstrap,Channel,ChannelFactory<? extends Channel>>
-
-