-
Methods in one.microstream.com that throw ComException
Modifier and Type |
Method |
Description |
static SocketChannel |
XSockets.acceptSocketChannel(ServerSocketChannel serverSocketChannel) |
|
static void |
Com.bounce(ComHostChannel<SocketChannel> channel) |
This method is catastrophically naive.
|
static void |
XSockets.closeChannel(NetworkChannel channel) |
|
ComClientChannel<C> |
ComClient.connect() |
|
ComClientChannel<C> |
ComClient.Default.connect() |
|
static InetAddress |
XSockets.localHostAddress() |
|
static InetSocketAddress |
Com.localHostSocketAddress() |
|
static InetSocketAddress |
Com.localHostSocketAddress(int port) |
|
static InetSocketAddress |
XSockets.localHostSocketAddress() |
|
static InetSocketAddress |
XSockets.localHostSocketAddress(int port) |
|
static SocketChannel |
XSockets.openChannel(InetSocketAddress address) |
|
static SocketChannel |
XSockets.openChannelLocalhost() |
|
static SocketChannel |
XSockets.openChannelLocalhost(int port) |
|
static ServerSocketChannel |
XSockets.openServerSocketChannel(InetSocketAddress address) |
|
static void |
XSockets.read(SocketChannel channel,
ByteBuffer buffer) |
|
static ByteBuffer |
XSockets.readCompletely(SocketChannel socketChannel,
ByteBuffer byteBuffer) |
This method either read to completely fill the passed ByteBuffer from position to limit
or it throws an exception to indicate failure.
|
static void |
XSockets.readIntoBuffer(SocketChannel channel,
ByteBuffer buffer,
int responseTimeout) |
|
static ByteBuffer |
XSockets.readIntoBufferKnownLength(SocketChannel channel,
ByteBuffer buffer,
int responseTimeout,
int length) |
|
static void |
XSockets.write(SocketChannel channel,
ByteBuffer buffer) |
|
static ByteBuffer |
XSockets.writeCompletely(SocketChannel socketChannel,
ByteBuffer byteBuffer) |
This method either writes all of the passed ByteBuffer 's bytes from position to limit
or it throws an exception to indicate failure.
|
static void |
XSockets.writeFromBuffer(SocketChannel channel,
ByteBuffer buffer,
int responseTimeout) |
|
-