Uses of Interface
org.refcodes.io.ByteTransmitter
-
Uses of ByteTransmitter in org.refcodes.io
Modifier and TypeInterfaceDescriptioninterface
BidirectionalConnectionByteTransceiver<INPUT,
OUTPUT> TheBidirectionalConnectionByteTransceiver
defines theDatagramTransceiver
functionality set on top of a I/O connection (as of theBidirectionalConnectionComponent.BidirectionalConnectionAutomaton
).interface
ABidirectionalStreamConnectionByteTransceiver
is aDatagramTransceiver
connected through I/O streams with anotherBidirectionalStreamConnectionByteTransceiver
.interface
ABytesTransceiver
combines the functionality of aBytesTransmitter
and of aBytesReceiver
. e.g. for building loopback devices.interface
The Interface BytesTransmitter.interface
Combines theByteTransmitter
andByteReceiver
functionality in a single interface to be implemented by a single class so thatByteTransmitter
andByteReceiver
functionality can be provided by a single instance.interface
TheConnectionBytesTransceiver
defines theDatagramTransceiver
functionality set on top of a connection (as of theConnectionComponent.ConnectionAutomaton
) for data types "byte".interface
TheConnectionBytesTransmitter
defines theDatagramTransmitter
functionality set on top of a connection (as of theConnectionComponent.ConnectionAutomaton
) for data types "byte".Modifier and TypeClassDescriptionclass
TheAbstractBytesTransmitter
is a base abstract implementation of theBytesTransmitter
interface providing common functionality for concrete real live implementations.class
The Class BidirectionalStreamByteTransceiver.class
The Class BidirectionalStreamConnectionByteTransceiverImpl.class
TheByteTransmitterDecorator
decorates aBytesSource
with the additional methods of aBytesTransmitter
making it easy to use aBytesSource
wherever aBytesTransmitter
is expected.class
ALoopbackBytesTransceiver
is aDatagramTransceiver
connected directly within the same JVM with anotherLoopbackBytesTransceiver
; a "loopback" connection is used for establishing the connection which cannot be accessed outside the JVM or the running machine.class
ALoopbackBytesTransmitter
is aDatagramTransmitter
connected directly within the same JVM with aLoopbackBytesReceiver
; a "loopback" connection is used for establishing the connection which cannot be accessed outside the JVM or the running machine.class
The Class OutputStreamBytesTransmitter.class
AOutputStreamConnectionBytesTransmitter
is aDatagramTransmitter
connected through I/O streams with aInputStreamConnectionReceiver
.class
The Class PrefetchBidirectionalStreamByteTransceiver.class
The Class PrefetchBidirectionalStreamConnectionByteTransceiver.