Modifier and Type | Interface and Description |
---|---|
interface |
BidirectionalConnectionByteTransceiver<INPUT,OUTPUT>
The
BidirectionalConnectionByteTransceiver defines the
DatagramTransceiver functionality set on top of a I/O connection (as
of the BidirectionalConnectionComponent.BidirectionalConnectionAutomaton ). |
interface |
BidirectionalConnectionTransceiver<DATA extends Serializable,INPUT,OUTPUT>
The
BidirectionalConnectionTransceiver defines the
DatagramTransceiver functionality set on top of a I/O connection (as
of the BidirectionalConnectionComponent.BidirectionalConnectionAutomaton ). |
interface |
BidirectionalStreamConnectionByteTransceiver
A
BidirectionalStreamConnectionByteTransceiver is a
DatagramTransceiver connected through I/O streams with another
BidirectionalStreamConnectionByteTransceiver . |
interface |
BidirectionalStreamConnectionTransceiver<DATA extends Serializable>
A
BidirectionalStreamConnectionTransceiver is a
DatagramTransceiver connected through I/O streams with another
BidirectionalStreamConnectionTransceiver . |
interface |
BlockSender<DATA extends Serializable>
The
BlockSender is used to send datagram blocks (arrays) in a unified
way. |
interface |
BlockTransceiver<DATA extends Serializable>
Combines the
BlockSender and BlockReceiver functionality in a
single interface to be implemented by a single class so that
BlockSender and BlockReceiver functionality can be provided
by a single instance. |
interface |
ByteBlockSender
The
ByteBlockSender is used to send byte blocks (arrays) in a unified
way. |
interface |
ByteBlockTransceiver
Combines the
BlockSender and BlockReceiver functionality in a
single interface to be implemented by a single class so that
BlockSender and BlockReceiver functionality can be provided
by a single instance. |
interface |
ByteDatagramSender
The
ByteDatagramSender is used to send bytes in a unified way. |
interface |
ByteDatagramTransceiver
Combines the
DatagramSender and DatagramReceiver
functionality in a single interface to be implemented by a single class so
that DatagramSender and DatagramReceiver functionality can be
provided by a single instance. |
interface |
ByteSender
The Interface ByteSender.
|
interface |
ByteTransceiver
A
ByteTransceiver combines the functionality of a ByteSender
and of a ByteReceiver . e.g. for building loopback devices. |
interface |
ConnectionByteSender<CON>
The
ConnectionByteSender defines the DatagramSender
functionality set on top of a connection (as of the
ConnectionComponent.ConnectionAutomaton ) for data types "byte". |
interface |
ConnectionByteTransceiver<CON>
The
ConnectionByteTransceiver defines the DatagramTransceiver
functionality set on top of a connection (as of the
ConnectionComponent.ConnectionAutomaton ) for data types "byte". |
interface |
ConnectionSender<DATA extends Serializable,CON>
The
ConnectionSender defines the DatagramSender functionality
set on top of a connection (as of the ConnectionComponent.ConnectionAutomaton ). |
interface |
ConnectionShortSender<CON>
The
ConnectionShortSender defines the DatagramSender
functionality set on top of a connection (as of the
ConnectionComponent.ConnectionAutomaton ) for data types "short". |
interface |
ConnectionShortTransceiver<CON>
The
ConnectionShortTransceiver defines the
DatagramTransceiver functionality set on top of a connection (as of
the ConnectionComponent.ConnectionAutomaton ) for data types "short". |
interface |
ConnectionTransceiver<DATA extends Serializable,CON>
The
ConnectionTransceiver defines the DatagramTransceiver
functionality set on top of a connection (as of the
ConnectionComponent.ConnectionAutomaton ). |
interface |
DatagramSender<DATA extends Serializable>
The
DatagramSender is used to send datagrams in a unified way. |
interface |
DatagramTransceiver<DATA extends Serializable>
Combines the
DatagramSender and DatagramReceiver
functionality in a single interface to be implemented by a single class so
that DatagramSender and DatagramReceiver functionality can be
provided by a single instance. |
interface |
LoopbackByteSender
A
LoopbackByteSender is a DatagramSender connected directly
within the same JVM with a LoopbackByteReceiver ; a "loopback"
connection is used for establishing the connection which cannot be accessed
outside the JVM or the running machine. |
interface |
LoopbackByteTransceiver
A
LoopbackByteTransceiver is a DatagramTransceiver connected
directly within the same JVM with another LoopbackByteTransceiver ; a
"loopback" connection is used for establishing the connection which cannot be
accessed outside the JVM or the running machine. |
interface |
LoopbackSender<DATA extends Serializable>
A
LoopbackSender is a DatagramSender connected directly
within the same JVM with a LoopbackReceiver ; a "loopback" connection
is used for establishing the connection which cannot be accessed outside the
JVM or the running machine. |
interface |
LoopbackShortSender
A
LoopbackShortSender is a DatagramSender connected directly
within the same JVM with a LoopbackByteReceiver ; a "loopback"
connection is used for establishing the connection which cannot be accessed
outside the JVM or the running machine. |
interface |
LoopbackShortTransceiver
A
LoopbackShortTransceiver is a DatagramTransceiver connected
directly within the same JVM with another LoopbackShortTransceiver ; a
"loopback" connection is used for establishing the connection which cannot be
accessed outside the JVM or the running machine. |
interface |
LoopbackTransceiver<DATA extends Serializable>
A
LoopbackTransceiver is a DatagramTransceiver connected
directly within the same JVM with another LoopbackTransceiver ; a
"loopback" connection is used for establishing the connection which cannot be
accessed outside the JVM or the running machine. |
interface |
OutputStreamConnectionByteSender
A
OutputStreamConnectionByteSender is a DatagramSender
connected through I/O streams with a InputStreamConnectionReceiver . |
interface |
OutputStreamConnectionSender<DATA extends Serializable>
A
OutputStreamConnectionSender is a DatagramSender connected
through I/O streams with a InputStreamConnectionReceiver . |
interface |
Sender<DATA extends Serializable>
The Interface Sender.
|
interface |
ShortBlockSender
The
ShortBlockSender is used to send short blocks (arrays) in a
unified way. |
interface |
ShortDatagramSender
The
ShortDatagramSender is used to send shorts in a unified way. |
interface |
ShortSender
The Interface ShortSender.
|
interface |
ShortTransceiver
A
ShortTransceiver combines the functionality of a
ShortSender and of a ShortReceiver . e.g. for building
loopback devices. |
interface |
Transceiver<DATA extends Serializable>
A
Transceiver combines the functionality of a Sender and of a
Receiver . e.g. for building loopback devices. |
Modifier and Type | Class and Description |
---|---|
class |
AbstractByteSender
The
AbstractByteSender is a base abstract implementation of the
ByteSender interface providing common functionality for concrete real
live ByteDatagramSender and ByteBlockSender (=
ByteSender ) implementations. |
class |
AbstractSender<DATA extends Serializable>
The
AbstractSender is a base abstract implementation of the
ByteSender interface providing common functionality for concrete real
live ByteDatagramSender and ByteBlockSender (=
ByteSender ) implementations. |
class |
AbstractShortSender
The
AbstractShortSender is a base abstract implementation of the
ShortSender interface providing common functionality for concrete
real live ShortDatagramSender and ShortBlockSender (=
ShortSender ) implementations. |
class |
BidirectionalStreamByteTransceiverImpl
The Class BidirectionalStreamByteTransceiverImpl.
|
class |
BidirectionalStreamConnectionByteTransceiverImpl
The Class BidirectionalStreamConnectionByteTransceiverImpl.
|
class |
BidirectionalStreamConnectionTransceiverImpl<DATA extends Serializable>
The Class BidirectionalStreamConnectionTransceiverImpl.
|
class |
BidirectionalStreamTransceiverImpl<DATA extends Serializable>
The Class BidirectionalStreamTransceiverImpl.
|
class |
ByteSenderDecorator
The
ByteSenderDecorator decorates a ByteConsumer with the
additional methods of a ByteSender making it easy to use a
ByteConsumer wherever a ByteSender is expected. |
class |
LoopbackByteSenderImpl
Implementation of the
LoopbackByteSender interface. |
class |
LoopbackByteTransceiverImpl
Implementation of the
LoopbackByteTransceiver interface. |
class |
LoopbackSenderImpl<DATA extends Serializable>
Implementation of the
LoopbackSender interface. |
class |
LoopbackShortSenderImpl
Implementation of the
LoopbackShortSender interface. |
class |
LoopbackShortTransceiverImpl
Implementation of the
LoopbackShortTransceiver interface. |
class |
LoopbackTransceiverImpl<DATA extends Serializable>
Implementation of the
LoopbackTransceiver interface. |
class |
OutputStreamByteSenderImpl
The Class OutputStreamByteSenderImpl.
|
class |
OutputStreamConnectionByteSenderImpl
Implementation of the
OutputStreamConnectionSender interface. |
class |
OutputStreamConnectionSenderImpl<DATA extends Serializable>
Implementation of the
OutputStreamConnectionSender interface. |
class |
OutputStreamSenderImpl<DATA extends Serializable>
The Class OutputStreamSenderImpl.
|
class |
PrefetchBidirectionalStreamByteTransceiverImpl
The Class PrefetchBidirectionalStreamByteTransceiverImpl.
|
class |
PrefetchBidirectionalStreamConnectionByteTransceiverImpl
The Class PrefetchBidirectionalStreamConnectionByteTransceiverImpl.
|
class |
PrefetchBidirectionalStreamConnectionTransceiverImpl<DATA extends Serializable>
The Class PrefetchBidirectionalStreamConnectionTransceiverImpl.
|
class |
PrefetchBidirectionalStreamTransceiverImpl<DATA extends Serializable>
The Class PrefetchBidirectionalStreamTransceiverImpl.
|
class |
SenderDecorator<DATA extends Serializable>
The
SenderDecorator decorates a Consumer with the additional
methods of a Sender making it easy to use a Consumer wherever
a Sender is expected. |
class |
ShortSenderDecorator
The
ShortSenderDecorator decorates a ShortConsumer with the
additional methods of a ShortSender making it easy to use a
ShortConsumer wherever a ShortSender is expected. |
Copyright © 2018. All rights reserved.