Uses of Class
one.microstream.com.ComException
-
Packages that use ComException Package Description one.microstream.com one.microstream.com.binary -
-
Uses of ComException in one.microstream.com
Subclasses of ComException in one.microstream.com Modifier and Type Class Description class
ComExceptionTimeout
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()
Alias forInetAddress.getLocalHost()
.static InetSocketAddress
Com. localHostSocketAddress()
static InetSocketAddress
Com. localHostSocketAddress(int port)
static InetSocketAddress
XSockets. localHostSocketAddress()
Creates a newInetSocketAddress
instance withXSockets.localHostAddress()
and port 0 (ephemeral port).static InetSocketAddress
XSockets. localHostSocketAddress(int port)
Creates a newInetSocketAddress
instance withXSockets.localHostAddress()
and the passed port value.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 passedByteBuffer
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 passedByteBuffer
's bytes from position to limit or it throws an exception to indicate failure.static void
XSockets. writeFromBuffer(SocketChannel channel, ByteBuffer buffer, int responseTimeout)
-
Uses of ComException in one.microstream.com.binary
Methods in one.microstream.com.binary that throw ComException Modifier and Type Method Description static ByteBuffer
ComBinary. readChunk(SocketChannel channel, ByteBuffer defaultBuffer, boolean switchedByteOrder)
static void
ComBinary. writeChunk(SocketChannel channel, ByteBuffer headerBuffer, ByteBuffer[] buffers)
-