Package org.refcodes.io
Class ByteSenderDecorator
- java.lang.Object
-
- org.refcodes.component.AbstractConnectableAutomaton
-
- org.refcodes.io.AbstractByteSender
-
- org.refcodes.io.ByteSenderDecorator
-
- All Implemented Interfaces:
java.io.Flushable,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.ConnectionStatusAccessor,org.refcodes.component.Flushable,org.refcodes.component.OpenedAccessor,ByteBlockConsumer,ByteBlockSender,ByteConsumer,ByteDatagramConsumer,ByteDatagramSender,ByteSender,Sendable
public class ByteSenderDecorator extends AbstractByteSender implements ByteSender
TheByteSenderDecoratordecorates aByteConsumerwith the additional methods of aByteSendermaking it easy to use aByteConsumerwherever aByteSenderis expected.
-
-
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.ConnectionStatusAccessor
org.refcodes.component.ConnectionStatusAccessor.ConnectionStatusMutator, org.refcodes.component.ConnectionStatusAccessor.ConnectionStatusProperty
-
-
Constructor Summary
Constructors Constructor Description ByteSenderDecorator(ByteConsumer aByteConsumer)Instantiates a new byte sender decorator.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclose()voidflush()voidwriteDatagram(byte aDatagram)Writes (sends) a byte.voidwriteDatagrams(byte[] aDatagrams)Writes (sends) a byte block.voidwriteDatagrams(byte[] aDatagrams, int aOffset, int aLength)Writes (sends) a byte block.-
Methods inherited from class org.refcodes.component.AbstractConnectableAutomaton
getConnectionStatus, isClosable, isClosed, isOpenable, isOpened, open, setConnectionStatus
-
Methods inherited from interface org.refcodes.component.Closable
closeIn, closeQuietly, closeUnchecked
-
Methods inherited from interface org.refcodes.component.ConnectionStatusAccessor
getConnectionStatus, isConnectionOpened
-
-
-
-
Constructor Detail
-
ByteSenderDecorator
public ByteSenderDecorator(ByteConsumer aByteConsumer)
Instantiates a new byte sender decorator.- Parameters:
aByteConsumer- the byte consumer
-
-
Method Detail
-
writeDatagram
public void writeDatagram(byte aDatagram) throws org.refcodes.component.OpenExceptionWrites (sends) a byte.- Specified by:
writeDatagramin interfaceByteConsumer- Specified by:
writeDatagramin interfaceByteDatagramConsumer- Parameters:
aDatagram- The byte to be pushed.- Throws:
org.refcodes.component.OpenException- Thrown in case opening or accessing an open line (connection, junction, link) caused problems.
-
writeDatagrams
public void writeDatagrams(byte[] aDatagrams) throws org.refcodes.component.OpenExceptionWrites (sends) a byte block.- Specified by:
writeDatagramsin interfaceByteBlockConsumer- Specified by:
writeDatagramsin interfaceByteConsumer- Parameters:
aDatagrams- The byte to be pushed.- Throws:
org.refcodes.component.OpenException- Thrown in case opening or accessing an open line (connection, junction, link) caused problems.
-
writeDatagrams
public void writeDatagrams(byte[] aDatagrams, int aOffset, int aLength) throws org.refcodes.component.OpenExceptionWrites (sends) a byte block.- Specified by:
writeDatagramsin interfaceByteBlockConsumer- Specified by:
writeDatagramsin interfaceByteSender- Overrides:
writeDatagramsin classAbstractByteSender- Parameters:
aDatagrams- The byte to be pushed.aOffset- The offset from which to take the data.aLength- The number of elements to push starting at the given offset.- Throws:
org.refcodes.component.OpenException- Thrown in case opening or accessing an open line (connection, junction, link) caused problems.
-
flush
public void flush() throws org.refcodes.component.OpenException- Specified by:
flushin interfaceByteSender- Specified by:
flushin interfacejava.io.Flushable- Specified by:
flushin interfaceorg.refcodes.component.Flushable- Throws:
org.refcodes.component.OpenException
-
close
public void close() throws org.refcodes.component.CloseException- Specified by:
closein interfaceorg.refcodes.component.Closable- Overrides:
closein classorg.refcodes.component.AbstractConnectableAutomaton- Throws:
org.refcodes.component.CloseException
-
-