ByteBlockProvider, ByteBlockReceiver, ByteDatagramProvider, ByteDatagramReceiver, ByteProvider, ByteReceiver, org.refcodes.component.Closable, org.refcodes.component.Closable.CloseAutomaton, org.refcodes.component.ClosedAccessor, org.refcodes.component.ConnectableComponent, org.refcodes.component.ConnectableComponent.ConnectableAutomaton, ConnectionByteReceiver<LoopbackByteSender>, org.refcodes.component.ConnectionComponent<LoopbackByteSender>, org.refcodes.component.ConnectionComponent.ConnectionAutomaton<LoopbackByteSender>, org.refcodes.component.ConnectionOpenable<LoopbackByteSender>, org.refcodes.component.ConnectionOpenable.ConnectionOpenAutomaton<LoopbackByteSender>, org.refcodes.component.ConnectionStatusAccessor, org.refcodes.component.OpenedAccessor, Receivable, org.refcodes.mixin.ReleaseableLoopbackByteReceiverImplpublic interface LoopbackByteReceiver extends ConnectionByteReceiver<LoopbackByteSender>
LoopbackByteReceiver is a DatagramReceiver connected
directly within the same JVM with a LoopbackByteSender; a "loopback"
connection is used for establishing the connection which cannot be accessed
outside the JVM or the running machine.org.refcodes.component.Closable.CloseAutomaton, org.refcodes.component.Closable.CloseBuilder<B extends org.refcodes.component.Closable.CloseBuilder<B>>org.refcodes.component.ClosedAccessor.ClosedMutator, org.refcodes.component.ClosedAccessor.ClosedPropertyorg.refcodes.component.ConnectableComponent.ConnectableAutomatonorg.refcodes.component.ConnectionComponent.ConnectionAutomaton<CON extends Object>, org.refcodes.component.ConnectionComponent.ConnectionComponentBuilder<CON extends Object,B extends org.refcodes.component.ConnectionComponent.ConnectionComponentBuilder<CON,B>>org.refcodes.component.ConnectionOpenable.ConnectionOpenAutomaton<CON extends Object>, org.refcodes.component.ConnectionOpenable.ConnectionOpenBuilder<CON extends Object,B extends org.refcodes.component.ConnectionOpenable.ConnectionOpenBuilder<CON,B>>| Modifier and Type | Method | Description |
|---|---|---|
void |
pushDatagram(byte aDatagram) |
Pushes a datagram into the
LoopbackByteReceiver. |
default void |
pushDatagrams(byte[] aDatagrams) |
Pushes the datagrams into the
LoopbackByteReceiver. |
default void |
pushDatagrams(byte[] aDatagrams,
int aOffset,
int aLength) |
Pushes the according number of datagrams beginning at the given offset
into the
LoopbackByteReceiver. |
readDatagramreadDatagrams, readDatagramsclose, closeIn, closeQuietly, closeUncheckedisOpenablegetConnectionStatus, isConnectionOpenedhasDatagramvoid pushDatagram(byte aDatagram)
throws org.refcodes.component.OpenException
LoopbackByteReceiver. Them datagrams
can be retrieved via ByteDatagramProvider.readDatagram(): use Receivable.hasDatagram()
to test beforehand whether there is a datagram available.aDatagram - The datagram to be pushed into the
LoopbackByteReceiver; to be retrieved with the
ByteDatagramProvider.readDatagram() method.org.refcodes.component.OpenException - the open exceptiondefault void pushDatagrams(byte[] aDatagrams)
throws org.refcodes.component.OpenException
LoopbackByteReceiver. Them
datagrams can be retrieved via ByteDatagramProvider.readDatagram(): use
Receivable.hasDatagram() to test beforehand whether there is a datagram
available.aDatagrams - The datagrams to be pushed into the
LoopbackByteReceiver; to be retrieved with the
ByteDatagramProvider.readDatagram() method.org.refcodes.component.OpenException - the open exceptiondefault void pushDatagrams(byte[] aDatagrams,
int aOffset,
int aLength)
throws org.refcodes.component.OpenException
LoopbackByteReceiver. Them datagrams can be retrieved
via ByteDatagramProvider.readDatagram(): use Receivable.hasDatagram() to test
beforehand whether there is a datagram available.aDatagrams - The datagrams to be pushed into the
LoopbackByteReceiver; to be retrieved with the
ByteDatagramProvider.readDatagram() method.aOffset - The offset from which to begin pushing.aLength - The number of elements to be pushed.org.refcodes.component.OpenException - the open exceptionCopyright © 2018. All rights reserved.