Package org.refcodes.io
Class OutputStreamSenderImpl<DATA extends java.io.Serializable>
- java.lang.Object
-
- org.refcodes.io.OutputStreamSenderImpl<DATA>
-
- Type Parameters:
DATA- the generic type
- 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,BlockConsumer<DATA>,BlockSender<DATA>,Consumer<DATA>,DatagramConsumer<DATA>,DatagramSender<DATA>,Sendable,Sender<DATA>
public class OutputStreamSenderImpl<DATA extends java.io.Serializable> extends java.lang.Object implements Sender<DATA>
The Class OutputStreamSenderImpl.- Author:
- steiner
-
-
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 OutputStreamSenderImpl(java.io.OutputStream aOutputStream)Instantiates a new output stream sender impl.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclose()voidflush()org.refcodes.component.ConnectionStatusgetConnectionStatus()booleanisClosable()booleanisClosed()booleanisOpened()voidwriteDatagram(DATA aDatagram)Writes (sends) a datagram to a listeningDatagramReceiver.voidwriteDatagrams(DATA[] aDatagram)Writes (sends) a datagram block to a listeningDatagramReceiverorBlockReceiver.voidwriteDatagrams(DATA[] aDatagram, int aOffset, int aLength)Write datagrams.
-
-
-
Constructor Detail
-
OutputStreamSenderImpl
public OutputStreamSenderImpl(java.io.OutputStream aOutputStream) throws org.refcodes.component.OpenExceptionInstantiates a new output stream sender impl.- Parameters:
aOutputStream- the output stream- Throws:
org.refcodes.component.OpenException- the open exception
-
-
Method Detail
-
writeDatagrams
public void writeDatagrams(DATA[] aDatagram) throws org.refcodes.component.OpenException
Writes (sends) a datagram block to a listeningDatagramReceiverorBlockReceiver.- Specified by:
writeDatagramsin interfaceBlockConsumer<DATA extends java.io.Serializable>- Specified by:
writeDatagramsin interfaceConsumer<DATA extends java.io.Serializable>- Parameters:
aDatagram- The datagram to be pushed to the receivingDatagramReceiverorBlockReceiver.- Throws:
org.refcodes.component.OpenException- Thrown in case opening or accessing an open line (connection, junction, link) caused problems.
-
isClosed
public boolean isClosed()
- Specified by:
isClosedin interfaceorg.refcodes.component.ClosedAccessor
-
isOpened
public boolean isOpened()
- Specified by:
isOpenedin interfaceorg.refcodes.component.OpenedAccessor
-
getConnectionStatus
public org.refcodes.component.ConnectionStatus getConnectionStatus()
- Specified by:
getConnectionStatusin interfaceorg.refcodes.component.ConnectionStatusAccessor
-
writeDatagrams
public void writeDatagrams(DATA[] aDatagram, int aOffset, int aLength) throws org.refcodes.component.OpenException
Write datagrams.- Specified by:
writeDatagramsin interfaceBlockConsumer<DATA extends java.io.Serializable>- Specified by:
writeDatagramsin interfaceSender<DATA extends java.io.Serializable>- Parameters:
aDatagram- the datagramaOffset- the offsetaLength- the length- Throws:
org.refcodes.component.OpenException- the open exception
-
close
public void close() throws org.refcodes.component.CloseException- Specified by:
closein interfaceorg.refcodes.component.Closable- Throws:
org.refcodes.component.CloseException
-
writeDatagram
public void writeDatagram(DATA aDatagram) throws org.refcodes.component.OpenException
Writes (sends) a datagram to a listeningDatagramReceiver.- Specified by:
writeDatagramin interfaceConsumer<DATA extends java.io.Serializable>- Specified by:
writeDatagramin interfaceDatagramConsumer<DATA extends java.io.Serializable>- Parameters:
aDatagram- The datagram to be pushed to the receivingDatagramConsumer.- 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
-
isClosable
public boolean isClosable()
- Specified by:
isClosablein interfaceorg.refcodes.component.Closable.CloseAutomaton
-
-