Home | History | Annotate | Download | only in channels

Lines Matching defs:socketChannel

25 import java.nio.channels.SocketChannel;
76 SocketChannel socketChannel = SocketChannel.open();
77 socketChannel.configureBlocking(false);
79 socketChannel.register(sel2, SelectionKey.OP_WRITE);
80 boolean isConnected = socketChannel.connect(server.socket.getLocalSocketAddress());
82 socketChannel.finishConnect();
85 assertEquals(true, socketChannel.isConnected());
88 assertEquals(true, socketChannel.isConnected());
93 SocketChannel socketChannel2 = SocketChannel.open();