DATA - The type of the datagram to be operated with.BlockProvider<DATA>, BlockReceiver<DATA>, org.refcodes.component.Closable, org.refcodes.component.Closable.CloseAutomaton, org.refcodes.component.ClosedAccessor, org.refcodes.component.ConnectableComponent, org.refcodes.component.ConnectableComponent.ConnectableAutomaton, org.refcodes.component.ConnectionComponent<DATA>, org.refcodes.component.ConnectionComponent.ConnectionAutomaton<DATA>, org.refcodes.component.ConnectionOpenable<DATA>, org.refcodes.component.ConnectionOpenable.ConnectionOpenAutomaton<DATA>, ConnectionReceiver<DATA,LoopbackSender<DATA>>, org.refcodes.component.ConnectionStatusAccessor, DatagramProvider<DATA>, DatagramReceiver<DATA>, org.refcodes.component.OpenedAccessor, Provider<DATA>, Receivable, Receiver<DATA>, org.refcodes.mixin.ReleaseableLoopbackReceiverImplpublic interface LoopbackReceiver<DATA extends Serializable> extends ConnectionReceiver<DATA,LoopbackSender<DATA>>
LoopbackReceiver is a DatagramReceiver connected directly
within the same JVM with a LoopbackSender; 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(DATA aDatagram) |
Pushes a datagram into the
LoopbackReceiver. |
default void |
pushDatagrams(DATA[] aDatagrams) |
Pushes the datagrams into the
LoopbackByteReceiver. |
default void |
pushDatagrams(DATA[] aDatagrams,
int aOffset,
int aLength) |
Pushes the according number of datagrams beginning at the given offset
into the
LoopbackByteReceiver. |
close, closeIn, closeQuietly, closeUncheckedisOpenablegetConnectionStatus, isConnectionOpenedreadDatagramhasDatagramreadDatagrams, readDatagramsvoid pushDatagram(DATA aDatagram) throws org.refcodes.component.OpenException
LoopbackReceiver. Them datagrams can
be retrieved via DatagramProvider.readDatagram(): use Receivable.hasDatagram() to
test beforehand whether there is a datagram available.aDatagram - The datagram to be pushed into the
LoopbackReceiver; to be retrieved with the
DatagramProvider.readDatagram() method.org.refcodes.component.OpenException - the open exceptiondefault void pushDatagrams(DATA[] aDatagrams) throws org.refcodes.component.OpenException
LoopbackByteReceiver. Them
datagrams can be retrieved via DatagramProvider.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
DatagramProvider.readDatagram() method.org.refcodes.component.OpenException - the open exceptiondefault void pushDatagrams(DATA[] aDatagrams, int aOffset, int aLength) throws org.refcodes.component.OpenException
LoopbackByteReceiver. Them datagrams can be retrieved
via DatagramProvider.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
DatagramProvider.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.