Uses of Class
java.nio.channels.AsynchronousServerSocketChannel
-
Packages that use AsynchronousServerSocketChannel 软件包 描述 java.nio.channels 定义通道,其表示与能够执行I / O操作的实体的连接,例如文件和套接字; 定义选择器,用于多路复用,非阻塞I / O操作。java.nio.channels.spi 服务提供商类为java.nio.channels
包。 -
-
Uses of AsynchronousServerSocketChannel in java.nio.channels
Methods in java.nio.channels that return AsynchronousServerSocketChannel Modifier and Type 方法 描述 AsynchronousServerSocketChannel
AsynchronousServerSocketChannel. bind(SocketAddress local)
将通道的套接字绑定到本地地址,并配置套接字以监听连接。abstract AsynchronousServerSocketChannel
AsynchronousServerSocketChannel. bind(SocketAddress local, int backlog)
将通道的套接字绑定到本地地址,并配置套接字以监听连接。static AsynchronousServerSocketChannel
AsynchronousServerSocketChannel. open()
打开异步服务器套接字通道。static AsynchronousServerSocketChannel
AsynchronousServerSocketChannel. open(AsynchronousChannelGroup group)
打开异步服务器套接字通道。abstract <T> AsynchronousServerSocketChannel
AsynchronousServerSocketChannel. setOption(SocketOption<T> name, T value)
-
Uses of AsynchronousServerSocketChannel in java.nio.channels.spi
Methods in java.nio.channels.spi that return AsynchronousServerSocketChannel Modifier and Type 方法 描述 abstract AsynchronousServerSocketChannel
AsynchronousChannelProvider. openAsynchronousServerSocketChannel(AsynchronousChannelGroup group)
Opens an asynchronous server-socket channel.
-