Package org.refcodes.io
Class OutputStreamConnectionByteSenderImpl
- java.lang.Object
-
- org.refcodes.component.AbstractConnectableAutomaton
-
- org.refcodes.io.AbstractByteSender
-
- org.refcodes.io.OutputStreamConnectionByteSenderImpl
-
- 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.ConnectionComponent<java.io.OutputStream>,org.refcodes.component.ConnectionComponent.ConnectionAutomaton<java.io.OutputStream>,org.refcodes.component.ConnectionOpenable<java.io.OutputStream>,org.refcodes.component.ConnectionOpenable.ConnectionOpenAutomaton<java.io.OutputStream>,org.refcodes.component.ConnectionStatusAccessor,org.refcodes.component.Flushable,org.refcodes.component.OpenedAccessor,ByteBlockConsumer,ByteBlockSender,ByteConsumer,ByteDatagramConsumer,ByteDatagramSender,ByteSender,ConnectionByteSender<java.io.OutputStream>,OutputStreamConnectionByteSender,Sendable
public class OutputStreamConnectionByteSenderImpl extends AbstractByteSender implements OutputStreamConnectionByteSender
Implementation of theOutputStreamConnectionSenderinterface.
-
-
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>>
-
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 OutputStreamConnectionByteSenderImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclose()voidflush()booleanisOpenable(java.io.OutputStream aOutputStream)voidopen(java.io.OutputStream aOutputStream)voidwriteDatagram(byte aDatagram)Writes (sends) a byte.-
Methods inherited from class org.refcodes.io.AbstractByteSender
writeDatagrams
-
Methods inherited from class org.refcodes.component.AbstractConnectableAutomaton
getConnectionStatus, isClosable, isClosed, isOpenable, isOpened, open, setConnectionStatus
-
Methods inherited from interface org.refcodes.io.ByteConsumer
writeDatagrams
-
Methods inherited from interface org.refcodes.io.ByteSender
writeDatagrams
-
Methods inherited from interface org.refcodes.component.Closable
closeIn, closeQuietly, closeUnchecked
-
Methods inherited from interface org.refcodes.component.ConnectionStatusAccessor
getConnectionStatus, isConnectionOpened
-
-
-
-
Method Detail
-
open
public void open(java.io.OutputStream aOutputStream) throws org.refcodes.component.OpenException- Specified by:
openin interfaceorg.refcodes.component.ConnectionOpenable<java.io.OutputStream>- Throws:
org.refcodes.component.OpenException
-
isOpenable
public boolean isOpenable(java.io.OutputStream aOutputStream)
- Specified by:
isOpenablein interfaceorg.refcodes.component.ConnectionOpenable.ConnectionOpenAutomaton<java.io.OutputStream>
-
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
-
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.
-
-