Searched defs:SocketChannel (Results 1 - 1 of 1) sorted by relevance

/libcore/luni/src/main/java/java/nio/channels/
H A DSocketChannel.java29 * A {@code SocketChannel} is a selectable channel that provides a partial
33 * allows a wider range of socket operations than {@code SocketChannel} itself.
65 public abstract class SocketChannel extends AbstractSelectableChannel implements class in inherits:AbstractSelectableChannel,ByteChannel,ScatteringByteChannel,GatheringByteChannel
69 * Constructs a new {@code SocketChannel}.
74 protected SocketChannel(SelectorProvider selectorProvider) { method in class:SocketChannel
88 public static SocketChannel open() throws IOException {
115 public static SocketChannel open(SocketAddress address) throws IOException {
116 SocketChannel socketChannel = open();

Completed in 136 milliseconds