Package org.jboss.netty.channel.socket
Interface ClientSocketChannelFactory
-
- All Superinterfaces:
ChannelFactory,ExternalResourceReleasable
- All Known Implementing Classes:
HttpTunnelingClientSocketChannelFactory,NioClientSocketChannelFactory,OioClientSocketChannelFactory
public interface ClientSocketChannelFactory extends ChannelFactory
AChannelFactorywhich creates a client-sideSocketChannel.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SocketChannelnewChannel(ChannelPipeline pipeline)-
Methods inherited from interface org.jboss.netty.channel.ChannelFactory
releaseExternalResources, shutdown
-
-
-
-
Method Detail
-
newChannel
SocketChannel newChannel(ChannelPipeline pipeline)
Description copied from interface:ChannelFactory- Specified by:
newChannelin interfaceChannelFactory- Parameters:
pipeline- theChannelPipelinewhich is going to be attached to the newChannel- Returns:
- the newly open channel
-
-