Package org.refcodes.io
Interface LoopbackReceiver<DATA extends java.io.Serializable>
-
- Type Parameters:
DATA- The type of the datagram to be operated with.
- All Superinterfaces:
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.Releaseable
- All Known Implementing Classes:
LoopbackReceiverImpl
public interface LoopbackReceiver<DATA extends java.io.Serializable> extends ConnectionReceiver<DATA,LoopbackSender<DATA>>
ALoopbackReceiveris aDatagramReceiverconnected directly within the same JVM with aLoopbackSender; a "loopback" connection is used for establishing the connection which cannot be accessed outside the JVM or the running machine.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.refcodes.component.Closable
org.refcodes.component.Closable.CloseAutomaton, org.refcodes.component.Closable.CloseBuilder<B extends org.refcodes.component.Closable.CloseBuilder<B>>
-
Nested classes/interfaces inherited from interface org.refcodes.component.ClosedAccessor
org.refcodes.component.ClosedAccessor.ClosedMutator, org.refcodes.component.ClosedAccessor.ClosedProperty
-
Nested classes/interfaces inherited from interface org.refcodes.component.ConnectableComponent
org.refcodes.component.ConnectableComponent.ConnectableAutomaton
-
Nested classes/interfaces inherited from interface org.refcodes.component.ConnectionComponent
org.refcodes.component.ConnectionComponent.ConnectionAutomaton<CON extends java.lang.Object>, org.refcodes.component.ConnectionComponent.ConnectionComponentBuilder<CON extends java.lang.Object,B extends org.refcodes.component.ConnectionComponent.ConnectionComponentBuilder<CON,B>>
-
Nested classes/interfaces inherited from interface org.refcodes.component.ConnectionOpenable
org.refcodes.component.ConnectionOpenable.ConnectionOpenAutomaton<CON extends java.lang.Object>, org.refcodes.component.ConnectionOpenable.ConnectionOpenBuilder<CON extends java.lang.Object,B extends org.refcodes.component.ConnectionOpenable.ConnectionOpenBuilder<CON,B>>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description voidpushDatagram(DATA aDatagram)Pushes a datagram into theLoopbackReceiver.default voidpushDatagrams(DATA[] aDatagrams)Pushes the datagrams into theLoopbackByteReceiver.default voidpushDatagrams(DATA[] aDatagrams, int aOffset, int aLength)Pushes the according number of datagrams beginning at the given offset into theLoopbackByteReceiver.-
Methods inherited from interface org.refcodes.component.Closable
close, closeIn, closeQuietly, closeUnchecked
-
Methods inherited from interface org.refcodes.component.ConnectionOpenable.ConnectionOpenAutomaton
isOpenable
-
Methods inherited from interface org.refcodes.component.ConnectionStatusAccessor
getConnectionStatus, isConnectionOpened
-
Methods inherited from interface org.refcodes.io.DatagramProvider
readDatagram
-
Methods inherited from interface org.refcodes.io.Receivable
hasDatagram
-
Methods inherited from interface org.refcodes.io.Receiver
readDatagrams, readDatagrams
-
-
-
-
Method Detail
-
pushDatagram
void pushDatagram(DATA aDatagram) throws org.refcodes.component.OpenException
Pushes a datagram into theLoopbackReceiver. Them datagrams can be retrieved viaDatagramProvider.readDatagram(): useReceivable.hasDatagram()to test beforehand whether there is a datagram available.- Parameters:
aDatagram- The datagram to be pushed into theLoopbackReceiver; to be retrieved with theDatagramProvider.readDatagram()method.- Throws:
org.refcodes.component.OpenException- the open exception
-
pushDatagrams
default void pushDatagrams(DATA[] aDatagrams) throws org.refcodes.component.OpenException
Pushes the datagrams into theLoopbackByteReceiver. Them datagrams can be retrieved viaDatagramProvider.readDatagram(): useReceivable.hasDatagram()to test beforehand whether there is a datagram available.- Parameters:
aDatagrams- The datagrams to be pushed into theLoopbackByteReceiver; to be retrieved with theDatagramProvider.readDatagram()method.- Throws:
org.refcodes.component.OpenException- the open exception
-
pushDatagrams
default void pushDatagrams(DATA[] aDatagrams, int aOffset, int aLength) throws org.refcodes.component.OpenException
Pushes the according number of datagrams beginning at the given offset into theLoopbackByteReceiver. Them datagrams can be retrieved viaDatagramProvider.readDatagram(): useReceivable.hasDatagram()to test beforehand whether there is a datagram available.- Parameters:
aDatagrams- The datagrams to be pushed into theLoopbackByteReceiver; to be retrieved with theDatagramProvider.readDatagram()method.aOffset- The offset from which to begin pushing.aLength- The number of elements to be pushed.- Throws:
org.refcodes.component.OpenException- the open exception
-
-