public class PrefetchBidirectionalStreamConnectionByteTransceiverImpl extends AbstractPrefetchInputStreamByteReceiver implements BidirectionalStreamConnectionByteTransceiver
AbstractByteReceiver.ConnectableAutomaton
org.refcodes.component.Flushable.FlushBuilder<B extends org.refcodes.component.Flushable.FlushBuilder<B>>
org.refcodes.component.ConnectableComponent.ConnectableAutomaton
org.refcodes.component.OpenedAccessor.OpenedMutator, org.refcodes.component.OpenedAccessor.OpenedProperty
org.refcodes.component.Closable.CloseAutomaton, org.refcodes.component.Closable.CloseBuilder<B extends org.refcodes.component.Closable.CloseBuilder<B>>
org.refcodes.component.ClosedAccessor.ClosedMutator, org.refcodes.component.ClosedAccessor.ClosedProperty
org.refcodes.component.ConnectionStatusAccessor.ConnectionStatusMutator, org.refcodes.component.ConnectionStatusAccessor.ConnectionStatusProperty
_automaton
_datagramQueue, DATAGRAM_QUEUE_SIZE
Constructor and Description |
---|
PrefetchBidirectionalStreamConnectionByteTransceiverImpl() |
Modifier and Type | Method and Description |
---|---|
void |
close() |
void |
flush() |
boolean |
isOpenable(InputStream aInputStream,
OutputStream aOutputStream) |
void |
open(InputStream aInputStream,
OutputStream aOutputStream) |
protected void |
open(OutputStream aOutputStream)
HINT: For testing purposes you can pass an already flushed
ObjectOutputStream (via ObjectOutputStream.flush() )
encapsulating a PipedOutputStream which in turn encapsulates a
PipedInputStream to this open(OutputStream) method. |
void |
writeDatagram(byte aDatagram)
Writes (sends) a byte.
|
isOpenable, open
getConnectionStatus, hasDatagram, isClosable, isClosed, isOpenable, isOpened, open, readDatagram, readDatagrams, readDatagrams, releaseAll, setConnectionStatus
pushDatagram, pushDatagrams, pushDatagrams
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
writeDatagrams
writeDatagrams
readDatagrams, readDatagrams
readDatagram
hasDatagram
closeIn, closeQuietly, closeUnchecked
public PrefetchBidirectionalStreamConnectionByteTransceiverImpl()
public boolean isOpenable(InputStream aInputStream, OutputStream aOutputStream)
isOpenable
in interface org.refcodes.component.BidirectionalConnectionOpenable.BidirectionalConnectionOpenAutomaton<InputStream,OutputStream>
public void open(InputStream aInputStream, OutputStream aOutputStream) throws org.refcodes.component.OpenException
open
in interface org.refcodes.component.BidirectionalConnectionOpenable<InputStream,OutputStream>
org.refcodes.component.OpenException
public void writeDatagram(byte aDatagram) throws org.refcodes.component.OpenException
writeDatagram
in interface ByteConsumer
writeDatagram
in interface ByteDatagramConsumer
aDatagram
- The byte to be pushed.org.refcodes.component.OpenException
- Thrown in case opening or accessing an open line
(connection, junction, link) caused problems.public void flush() throws org.refcodes.component.OpenException
flush
in interface Flushable
flush
in interface ByteSender
org.refcodes.component.OpenException
public void close() throws org.refcodes.component.CloseException
close
in interface org.refcodes.component.Closable
close
in class AbstractPrefetchInputStreamByteReceiver
org.refcodes.component.CloseException
protected void open(OutputStream aOutputStream) throws org.refcodes.component.OpenException
ObjectOutputStream
(via ObjectOutputStream.flush()
)
encapsulating a PipedOutputStream
which in turn encapsulates a
PipedInputStream
to this open(OutputStream)
method. This
enables you a non-blocking test of the
OutputStreamConnectionSenderImpl
connected with the
PrefetchInputStreamConnectionReceiverImpl
counterpart which is
being opened with the PipedInputStream
.
ATTENTION: For maintainers, please keep the below code in sync with the
code from OutputStreamConnectionSenderImpl.open(java.io.OutputStream)
;
except do not set the connection status here, make it protected and do
not @Override anything.aOutputStream
- the a output streamorg.refcodes.component.OpenException
- the open exceptionCopyright © 2017. All rights reserved.