Package org.refcodes.io
Interface LoopbackByteReceiver
-
- All Superinterfaces:
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.Releaseable
- All Known Implementing Classes:
LoopbackByteReceiverImpl
public interface LoopbackByteReceiver extends ConnectionByteReceiver<LoopbackByteSender>
ALoopbackByteReceiveris aDatagramReceiverconnected directly within the same JVM with aLoopbackByteSender; 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(byte aDatagram)Pushes a datagram into theLoopbackByteReceiver.default voidpushDatagrams(byte[] aDatagrams)Pushes the datagrams into theLoopbackByteReceiver.default voidpushDatagrams(byte[] aDatagrams, int aOffset, int aLength)Pushes the according number of datagrams beginning at the given offset into theLoopbackByteReceiver.-
Methods inherited from interface org.refcodes.io.ByteDatagramProvider
readDatagram
-
Methods inherited from interface org.refcodes.io.ByteReceiver
readDatagrams, readDatagrams
-
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.Receivable
hasDatagram
-
-
-
-
Method Detail
-
pushDatagram
void pushDatagram(byte aDatagram) throws org.refcodes.component.OpenExceptionPushes a datagram into theLoopbackByteReceiver. Them datagrams can be retrieved viaByteDatagramProvider.readDatagram(): useReceivable.hasDatagram()to test beforehand whether there is a datagram available.- Parameters:
aDatagram- The datagram to be pushed into theLoopbackByteReceiver; to be retrieved with theByteDatagramProvider.readDatagram()method.- Throws:
org.refcodes.component.OpenException- the open exception
-
pushDatagrams
default void pushDatagrams(byte[] aDatagrams) throws org.refcodes.component.OpenExceptionPushes the datagrams into theLoopbackByteReceiver. Them datagrams can be retrieved viaByteDatagramProvider.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 theByteDatagramProvider.readDatagram()method.- Throws:
org.refcodes.component.OpenException- the open exception
-
pushDatagrams
default void pushDatagrams(byte[] aDatagrams, int aOffset, int aLength) throws org.refcodes.component.OpenExceptionPushes the according number of datagrams beginning at the given offset into theLoopbackByteReceiver. Them datagrams can be retrieved viaByteDatagramProvider.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 theByteDatagramProvider.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
-
-