Uses of Class
one.microstream.com.ComException
Package | Description |
---|---|
one.microstream.com | |
one.microstream.communication.binary.types | |
one.microstream.communication.binarydynamic | |
one.microstream.communication.types |
-
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
XSockets. closeChannel(NetworkChannel channel)
static InetAddress
XSockets. localHostAddress()
Alias forInetAddress.getLocalHost()
.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 int
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 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.communication.binary.types
Methods in one.microstream.communication.binary.types that throw ComException Modifier and Type Method Description static ByteBuffer
ComBinary. readChunk(ComConnection connection, ByteBuffer defaultBuffer, boolean switchedByteOrder)
static void
ComBinary. writeChunk(ComConnection connection, ByteBuffer headerBuffer, ByteBuffer[] buffers)
-
Uses of ComException in one.microstream.communication.binarydynamic
Subclasses of ComException in one.microstream.communication.binarydynamic Modifier and Type Class Description class
ComExceptionRemoteClassNotFound
Thrown when a typeDefinition received from the remote host contains a type that can't be resolved to an exiting class on the local system.class
ComExceptionTypeMismatch
-
Uses of ComException in one.microstream.communication.types
Methods in one.microstream.communication.types that throw ComException Modifier and Type Method Description static void
Com. bounce(ComHostChannel<ComConnection> channel)
This method is catastrophically naive.ComClientChannel<C>
ComClient. connect()
ComClientChannel<C>
ComClient. connect(int retries, Duration retryDelay)
ComClientChannel<C>
ComClient.Default. connect()
ComClientChannel<C>
ComClient.Default. connect(int retries, Duration retryDelay)
static InetSocketAddress
Com. localHostSocketAddress()
static InetSocketAddress
Com. localHostSocketAddress(int port)