Uses of Class
java.nio.channels.ServerSocketChannel
| Package | Description | 
|---|---|
| java.net | Provides the classes for implementing networking applications. | 
| java.nio.channels | Defines channels, which represent connections to entities that are capable of
 performing I/O operations, such as files and sockets; defines selectors, for
 multiplexed, non-blocking I/O operations. | 
| java.nio.channels.spi | Service-provider classes for the  java.nio.channelspackage. | 
- 
Uses of ServerSocketChannel in java.netMethods in java.net that return ServerSocketChannel Modifier and Type Method Description ServerSocketChannelServerSocket. getChannel()Returns the uniqueServerSocketChannelobject associated with this socket, if any.
- 
Uses of ServerSocketChannel in java.nio.channelsMethods in java.nio.channels that return ServerSocketChannel Modifier and Type Method Description ServerSocketChannelServerSocketChannel. bind(SocketAddress local)Binds the channel's socket to a local address and configures the socket to listen for connections.abstract ServerSocketChannelServerSocketChannel. bind(SocketAddress local, int backlog)Binds the channel's socket to a local address and configures the socket to listen for connections.static ServerSocketChannelServerSocketChannel. open()Opens a server-socket channel.abstract <T> ServerSocketChannelServerSocketChannel. setOption(SocketOption<T> name, T value)
- 
Uses of ServerSocketChannel in java.nio.channels.spiMethods in java.nio.channels.spi that return ServerSocketChannel Modifier and Type Method Description abstract ServerSocketChannelSelectorProvider. openServerSocketChannel()Opens a server-socket channel.