Package org.refcodes.io
Class LoopbackShortReceiverImpl
- java.lang.Object
-
- org.refcodes.component.AbstractConnectableAutomaton
-
- org.refcodes.io.AbstractShortReceiver
-
- org.refcodes.io.LoopbackShortReceiverImpl
-
- All Implemented Interfaces:
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<LoopbackShortSender>,org.refcodes.component.ConnectionComponent.ConnectionAutomaton<LoopbackShortSender>,org.refcodes.component.ConnectionOpenable<LoopbackShortSender>,org.refcodes.component.ConnectionOpenable.ConnectionOpenAutomaton<LoopbackShortSender>,org.refcodes.component.ConnectionStatusAccessor,org.refcodes.component.OpenedAccessor,ConnectionShortReceiver<LoopbackShortSender>,LoopbackShortReceiver,Receivable,ShortBlockProvider,ShortBlockReceiver,ShortDatagramProvider,ShortDatagramReceiver,ShortProvider,ShortReceiver,org.refcodes.mixin.Releaseable
public class LoopbackShortReceiverImpl extends AbstractShortReceiver implements LoopbackShortReceiver
Implementation of theLoopbackShortReceiverinterface.
-
-
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>>
-
-
Field Summary
-
Fields inherited from class org.refcodes.io.AbstractShortReceiver
_datagramQueue, DATAGRAM_QUEUE_SIZE
-
-
Constructor Summary
Constructors Constructor Description LoopbackShortReceiverImpl()Instantiates a new loopback short receiver impl.LoopbackShortReceiverImpl(int aCapacity)Instantiates a new loopback short receiver impl.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclose()booleanisOpenable(LoopbackShortSender aLoopbackSender)voidopen(LoopbackShortSender aLoopbackSender)voidpushDatagram(short aDatagram)Pushes a datagram into the receiver and puts it into the blocking queue containing the so far received datagrams.voidpushDatagrams(short[] aDatagrams)Pushes datagrams into the receiver and puts them into the blocking queue containing the so far received datagrams.voidpushDatagrams(short[] aDatagrams, int aOffset, int aLength)Pushes datagrams into the receiver and puts them into the blocking queue containing the so far received datagrams.-
Methods inherited from class org.refcodes.component.AbstractConnectableAutomaton
getConnectionStatus, isClosable, isClosed, isOpenable, isOpened, open, setConnectionStatus
-
Methods inherited from class org.refcodes.io.AbstractShortReceiver
hasDatagram, readDatagram, readDatagrams, readDatagrams, releaseAll
-
Methods inherited from interface org.refcodes.component.Closable
closeIn, closeQuietly, closeUnchecked
-
Methods inherited from interface org.refcodes.component.ConnectionStatusAccessor
getConnectionStatus, isConnectionOpened
-
Methods inherited from interface org.refcodes.mixin.Loggable
alert, alert, critical, critical, debug, error, info, notice, panic, trace, warn, warn
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.refcodes.io.Receivable
hasDatagram
-
Methods inherited from interface org.refcodes.io.ShortDatagramProvider
readDatagram
-
Methods inherited from interface org.refcodes.io.ShortReceiver
readDatagrams, readDatagrams
-
-
-
-
Method Detail
-
isOpenable
public boolean isOpenable(LoopbackShortSender aLoopbackSender)
- Specified by:
isOpenablein interfaceorg.refcodes.component.ConnectionOpenable.ConnectionOpenAutomaton<LoopbackShortSender>
-
open
public void open(LoopbackShortSender aLoopbackSender) throws org.refcodes.component.OpenException
- Specified by:
openin interfaceorg.refcodes.component.ConnectionOpenable<LoopbackShortSender>- Throws:
org.refcodes.component.OpenException
-
pushDatagram
public void pushDatagram(short aDatagram) throws org.refcodes.component.OpenExceptionPushes a datagram into the receiver and puts it into the blocking queue containing the so far received datagrams. Them datagrams can be retrieved viaAbstractShortReceiver.readDatagram(): useAbstractShortReceiver.hasDatagram()to test beforehand whether there is a datagram available.- Specified by:
pushDatagramin interfaceLoopbackShortReceiver- Overrides:
pushDatagramin classAbstractShortReceiver- Parameters:
aDatagram- The datagram to be pushed at the end of the blocking queue; to be retrieved with theAbstractShortReceiver.readDatagram()method.- Throws:
org.refcodes.component.OpenException- the open exception
-
pushDatagrams
public void pushDatagrams(short[] aDatagrams) throws org.refcodes.component.OpenExceptionPushes datagrams into the receiver and puts them into the blocking queue containing the so far received datagrams. Them datagrams can be retrieved viaAbstractShortReceiver.readDatagram(): useAbstractShortReceiver.hasDatagram()to test beforehand whether there is a datagram available.- Specified by:
pushDatagramsin interfaceLoopbackShortReceiver- Overrides:
pushDatagramsin classAbstractShortReceiver- Parameters:
aDatagrams- The datagrams to be pushed at the end of the blocking queue; to be retrieved with theAbstractShortReceiver.readDatagram()method.- Throws:
org.refcodes.component.OpenException- the open exception
-
pushDatagrams
public void pushDatagrams(short[] aDatagrams, int aOffset, int aLength) throws org.refcodes.component.OpenExceptionPushes datagrams into the receiver and puts them into the blocking queue containing the so far received datagrams. Them datagrams can be retrieved viaAbstractShortReceiver.readDatagram(): useAbstractShortReceiver.hasDatagram()to test beforehand whether there is a datagram available.- Specified by:
pushDatagramsin interfaceLoopbackShortReceiver- Overrides:
pushDatagramsin classAbstractShortReceiver- Parameters:
aDatagrams- The datagrams to be pushed at the end of the blocking queue; to be retrieved with theAbstractShortReceiver.readDatagram()method.aOffset- The offset to start taking data from to be pushed.aLength- The number of elements to be pushed from the offset onwards.- Throws:
org.refcodes.component.OpenException- the open exception
-
close
public void close() throws org.refcodes.component.CloseException- Specified by:
closein interfaceorg.refcodes.component.Closable- Overrides:
closein classAbstractShortReceiver- Throws:
org.refcodes.component.CloseException
-
-