Skip navigation links
A B C D F G H I L M N O P R S T W Z _ 

A

AbstractByteReceiver - Class in org.refcodes.io.impls
The AbstractByteReceiver is a base abstract implementation of the ByteReceiver interface providing common functionality for concrete real live ByteDatagramReceiver and ByteBlockReceiver (= ByteReceiver) implementations.
AbstractByteReceiver() - Constructor for class org.refcodes.io.impls.AbstractByteReceiver
Constructs a AbstractByteReceiver with a default sized blocking queue enabling a maximum of AbstractByteReceiver.DATAGRAM_QUEUE_SIZE datagrams. ------------------------------------------------------------------------- Make sure your code fetches the datagrams quick enough to prevent filling up of the queue.
AbstractByteReceiver(int) - Constructor for class org.refcodes.io.impls.AbstractByteReceiver
Constructs a AbstractByteReceiver with a custom sized blocking queue enabling a maximum of datagrams as specified by the capacity parameter. ------------------------------------------------------------------------- Make sure your code fetches the datagrams quick enough to prevent filling up of the queue.
AbstractByteSender - Class in org.refcodes.io.impls
The AbstractByteSender is a base abstract implementation of the ByteSender interface providing common functionality for concrete real live ByteDatagramSender and ByteBlockSender (= ByteSender) implementations.
AbstractByteSender() - Constructor for class org.refcodes.io.impls.AbstractByteSender
 
AbstractInputStreamByteReceiver - Class in org.refcodes.io.impls
Abstract implementation of the ByteReceiver interface.
AbstractInputStreamByteReceiver() - Constructor for class org.refcodes.io.impls.AbstractInputStreamByteReceiver
 
AbstractInputStreamReceiver<DATA extends Serializable> - Class in org.refcodes.io.impls
Abstract implementation of the Receiver interface.
AbstractInputStreamReceiver() - Constructor for class org.refcodes.io.impls.AbstractInputStreamReceiver
 
AbstractPrefetchInputStreamByteReceiver - Class in org.refcodes.io.impls
Abstract implementation of the ByteReceiver interface.
AbstractPrefetchInputStreamByteReceiver() - Constructor for class org.refcodes.io.impls.AbstractPrefetchInputStreamByteReceiver
Creates an AbstractInputStreamDatagramReceiver.
AbstractPrefetchInputStreamByteReceiver(ExecutorService) - Constructor for class org.refcodes.io.impls.AbstractPrefetchInputStreamByteReceiver
Creates an AbstractInputStreamDatagramReceiver using the given ExecutorService required for thread generation in an JEE environment.
AbstractPrefetchInputStreamByteReceiver(int) - Constructor for class org.refcodes.io.impls.AbstractPrefetchInputStreamByteReceiver
Creates an AbstractInputStreamDatagramReceiver using the given datagram queue capacity.
AbstractPrefetchInputStreamByteReceiver(int, ExecutorService) - Constructor for class org.refcodes.io.impls.AbstractPrefetchInputStreamByteReceiver
Creates an AbstractInputStreamDatagramReceiver using the given ExecutorService required for thread generation in an JEE environment.
AbstractPrefetchInputStreamReceiver<DATA extends Serializable> - Class in org.refcodes.io.impls
Abstract implementation of the Receiver interface.
AbstractPrefetchInputStreamReceiver() - Constructor for class org.refcodes.io.impls.AbstractPrefetchInputStreamReceiver
Creates an AbstractInputStreamDatagramReceiver.
AbstractPrefetchInputStreamReceiver(ExecutorService) - Constructor for class org.refcodes.io.impls.AbstractPrefetchInputStreamReceiver
Creates an AbstractInputStreamDatagramReceiver using the given ExecutorService required for thread generation in an JEE environment.
AbstractPrefetchInputStreamReceiver(int) - Constructor for class org.refcodes.io.impls.AbstractPrefetchInputStreamReceiver
Creates an AbstractInputStreamDatagramReceiver using the given datagram queue capacity.
AbstractPrefetchInputStreamReceiver(int, ExecutorService) - Constructor for class org.refcodes.io.impls.AbstractPrefetchInputStreamReceiver
Creates an AbstractInputStreamDatagramReceiver using the given ExecutorService required for thread generation in an JEE environment.
AbstractReceiver<DATA extends Serializable> - Class in org.refcodes.io.impls
The AbstractReceiver is a base abstract implementation of the Receiver interface providing common functionality for concrete real live ByteDatagramReceiver and ByteBlockReceiver (= Receiver) implementations.
AbstractReceiver() - Constructor for class org.refcodes.io.impls.AbstractReceiver
Constructs a AbstractReceiver with a default sized blocking queue enabling a maximum of AbstractReceiver.DATAGRAM_QUEUE_SIZE datagrams. ------------------------------------------------------------------------- Make sure your code fetches the datagrams quick enough to prevent filling up of the queue.
AbstractReceiver(int) - Constructor for class org.refcodes.io.impls.AbstractReceiver
Constructs a AbstractReceiver with a custom sized blocking queue enabling a maximum of datagrams as specified by the capacity parameter. ------------------------------------------------------------------------- Make sure your code fetches the datagrams quick enough to prevent filling up of the queue.
AbstractSender<DATA extends Serializable> - Class in org.refcodes.io.impls
The AbstractSender is a base abstract implementation of the ByteSender interface providing common functionality for concrete real live ByteDatagramSender and ByteBlockSender (= ByteSender) implementations.
AbstractSender() - Constructor for class org.refcodes.io.impls.AbstractSender
 
add(T) - Method in class org.refcodes.io.impls.SerializableListIteratorImpl
 
available() - Method in interface org.refcodes.io.ByteDatagramInputStream
 

B

BidirectionalConnectionByteTransceiver<INPUT,OUTPUT> - Interface in org.refcodes.io
The BidirectionalConnectionByteTransceiver defines the DatagramTransceiver functionality set on top of a I/O connection (as of the BidirectionalConnectionComponent.BidirectionalConnectionAutomaton).
BidirectionalConnectionTransceiver<DATA extends Serializable,INPUT,OUTPUT> - Interface in org.refcodes.io
The BidirectionalConnectionTransceiver defines the DatagramTransceiver functionality set on top of a I/O connection (as of the BidirectionalConnectionComponent.BidirectionalConnectionAutomaton).
BidirectionalStreamByteTransceiverImpl - Class in org.refcodes.io.impls
 
BidirectionalStreamByteTransceiverImpl(InputStream, OutputStream) - Constructor for class org.refcodes.io.impls.BidirectionalStreamByteTransceiverImpl
 
BidirectionalStreamConnectionByteTransceiver - Interface in org.refcodes.io
BidirectionalStreamConnectionByteTransceiverImpl - Class in org.refcodes.io.impls
 
BidirectionalStreamConnectionByteTransceiverImpl() - Constructor for class org.refcodes.io.impls.BidirectionalStreamConnectionByteTransceiverImpl
 
BidirectionalStreamConnectionTransceiver<DATA extends Serializable> - Interface in org.refcodes.io
BidirectionalStreamConnectionTransceiverImpl<DATA extends Serializable> - Class in org.refcodes.io.impls
 
BidirectionalStreamConnectionTransceiverImpl() - Constructor for class org.refcodes.io.impls.BidirectionalStreamConnectionTransceiverImpl
 
BidirectionalStreamTransceiverImpl<DATA extends Serializable> - Class in org.refcodes.io.impls
 
BidirectionalStreamTransceiverImpl(InputStream, OutputStream) - Constructor for class org.refcodes.io.impls.BidirectionalStreamTransceiverImpl
 
BlockReceiver<DATA extends Serializable> - Interface in org.refcodes.io
The BlockReceiver is used to receive datagram blocks (arrays) in a unified way.
BlockSender<DATA extends Serializable> - Interface in org.refcodes.io
The BlockSender is used to send datagram blocks (arrays) in a unified way.
BlockTransceiver<DATA extends Serializable> - Interface in org.refcodes.io
Combines the BlockSender and BlockReceiver functionality in a single interface to be implemented by a single class so that BlockSender and BlockReceiver functionality can be provided by a single instance.
ByteBlockReceiver - Interface in org.refcodes.io
The ByteBlockReceiver is used to receive byte blocks (arrays) in a unified way.
ByteBlockSender - Interface in org.refcodes.io
The ByteBlockSender is used to send byte blocks (arrays) in a unified way.
ByteBlockTransceiver - Interface in org.refcodes.io
Combines the BlockSender and BlockReceiver functionality in a single interface to be implemented by a single class so that BlockSender and BlockReceiver functionality can be provided by a single instance.
ByteDatagramInputStream - Interface in org.refcodes.io
(as InputStream does not provide some useful *interface*)
ByteDatagramOutputStream - Interface in org.refcodes.io
(as OutputStream does not provide some useful *interface*)
ByteDatagramReceiver - Interface in org.refcodes.io
The ByteDatagramReceiver is used to receive bytes in a unified way.
ByteDatagramSender - Interface in org.refcodes.io
The ByteDatagramSender is used to send bytes in a unified way.
ByteDatagramTransceiver - Interface in org.refcodes.io
Combines the DatagramSender and DatagramReceiver functionality in a single interface to be implemented by a single class so that DatagramSender and DatagramReceiver functionality can be provided by a single instance.
ByteReceiver - Interface in org.refcodes.io
 
ByteSender - Interface in org.refcodes.io
 
ByteTransceiver - Interface in org.refcodes.io
 

C

close() - Method in class org.refcodes.io.impls.AbstractByteReceiver
 
close() - Method in class org.refcodes.io.impls.AbstractInputStreamByteReceiver
 
close() - Method in class org.refcodes.io.impls.AbstractInputStreamReceiver
 
close() - Method in class org.refcodes.io.impls.AbstractPrefetchInputStreamByteReceiver
 
close() - Method in class org.refcodes.io.impls.AbstractPrefetchInputStreamReceiver
 
close() - Method in class org.refcodes.io.impls.AbstractReceiver
 
close() - Method in class org.refcodes.io.impls.BidirectionalStreamByteTransceiverImpl
 
close() - Method in class org.refcodes.io.impls.BidirectionalStreamConnectionByteTransceiverImpl
 
close() - Method in class org.refcodes.io.impls.BidirectionalStreamConnectionTransceiverImpl
 
close() - Method in class org.refcodes.io.impls.BidirectionalStreamTransceiverImpl
 
close() - Method in class org.refcodes.io.impls.InputStreamByteReceiverImpl
 
close() - Method in class org.refcodes.io.impls.InputStreamReceiverImpl
 
close() - Method in class org.refcodes.io.impls.LoopbackReceiverImpl
 
close() - Method in class org.refcodes.io.impls.LoopbackSenderImpl
 
close() - Method in class org.refcodes.io.impls.LoopbackTransceiverImpl
 
close() - Method in class org.refcodes.io.impls.OutputStreamByteSenderImpl
 
close() - Method in class org.refcodes.io.impls.OutputStreamConnectionByteSenderImpl
 
close() - Method in class org.refcodes.io.impls.OutputStreamConnectionSenderImpl
 
close() - Method in class org.refcodes.io.impls.OutputStreamSenderImpl
 
close() - Method in class org.refcodes.io.impls.PrefetchBidirectionalStreamByteTransceiverImpl
 
close() - Method in class org.refcodes.io.impls.PrefetchBidirectionalStreamConnectionByteTransceiverImpl
 
close() - Method in class org.refcodes.io.impls.PrefetchBidirectionalStreamConnectionTransceiverImpl
 
close() - Method in class org.refcodes.io.impls.PrefetchBidirectionalStreamTransceiverImpl
 
close() - Method in class org.refcodes.io.impls.PrefetchInputStreamByteReceiverImpl
 
close() - Method in class org.refcodes.io.impls.PrefetchInputStreamReceiverImpl
 
ConnectionByteReceiver<CON> - Interface in org.refcodes.io
The ConnectionByteReceiver defines the DatagramReceiver functionality set on top of a connection (as of the ConnectionComponent.ConnectionAutomaton).
ConnectionByteSender<CON> - Interface in org.refcodes.io
The ConnectionByteSender defines the DatagramSender functionality set on top of a connection (as of the ConnectionComponent.ConnectionAutomaton).
ConnectionByteTransceiver<CON> - Interface in org.refcodes.io
The ConnectionByteTransceiver defines the DatagramTransceiver functionality set on top of a connection (as of the ConnectionComponent.ConnectionAutomaton).
ConnectionReceiver<DATA extends Serializable,CON> - Interface in org.refcodes.io
The ConnectionReceiver defines the DatagramReceiver functionality set on top of a connection (as of the ConnectionComponent.ConnectionAutomaton).
ConnectionSender<DATA extends Serializable,CON> - Interface in org.refcodes.io
The ConnectionSender defines the DatagramSender functionality set on top of a connection (as of the ConnectionComponent.ConnectionAutomaton).
ConnectionTransceiver<DATA extends Serializable,CON> - Interface in org.refcodes.io
The ConnectionTransceiver defines the DatagramTransceiver functionality set on top of a connection (as of the ConnectionComponent.ConnectionAutomaton).
createNestedJarFileUrl(URL, File) - Static method in class org.refcodes.io.FileUtility
Copies a file residing in a nested JAR to the given destination folder.

D

DATAGRAM_QUEUE_SIZE - Static variable in class org.refcodes.io.impls.AbstractByteReceiver
 
DATAGRAM_QUEUE_SIZE - Static variable in class org.refcodes.io.impls.AbstractReceiver
 
DatagramReceiver<DATA extends Serializable> - Interface in org.refcodes.io
The DatagramReceiver is used to receive datagrams in a unified way.
DatagramSender<DATA extends Serializable> - Interface in org.refcodes.io
The DatagramSender is used to send datagrams in a unified way.
DatagramTransceiver<DATA extends Serializable> - Interface in org.refcodes.io
Combines the DatagramSender and DatagramReceiver functionality in a single interface to be implemented by a single class so that DatagramSender and DatagramReceiver functionality can be provided by a single instance.

F

FileUtility - Class in org.refcodes.io
The FileUtility provides Various file related utility functionality.
flush() - Method in interface org.refcodes.io.ByteDatagramOutputStream
 
flush() - Method in class org.refcodes.io.impls.BidirectionalStreamByteTransceiverImpl
 
flush() - Method in class org.refcodes.io.impls.BidirectionalStreamConnectionByteTransceiverImpl
 
flush() - Method in class org.refcodes.io.impls.BidirectionalStreamConnectionTransceiverImpl
 
flush() - Method in class org.refcodes.io.impls.BidirectionalStreamTransceiverImpl
 
flush() - Method in class org.refcodes.io.impls.LoopbackSenderImpl
 
flush() - Method in class org.refcodes.io.impls.LoopbackTransceiverImpl
 
flush() - Method in class org.refcodes.io.impls.OutputStreamByteSenderImpl
 
flush() - Method in class org.refcodes.io.impls.OutputStreamConnectionByteSenderImpl
 
flush() - Method in class org.refcodes.io.impls.OutputStreamConnectionSenderImpl
 
flush() - Method in class org.refcodes.io.impls.OutputStreamSenderImpl
 
flush() - Method in class org.refcodes.io.impls.PrefetchBidirectionalStreamByteTransceiverImpl
 
flush() - Method in class org.refcodes.io.impls.PrefetchBidirectionalStreamConnectionByteTransceiverImpl
 
flush() - Method in class org.refcodes.io.impls.PrefetchBidirectionalStreamConnectionTransceiverImpl
 
flush() - Method in class org.refcodes.io.impls.PrefetchBidirectionalStreamTransceiverImpl
 

G

getConnectionStatus() - Method in class org.refcodes.io.impls.BidirectionalStreamByteTransceiverImpl
 
getConnectionStatus() - Method in class org.refcodes.io.impls.BidirectionalStreamTransceiverImpl
 
getConnectionStatus() - Method in class org.refcodes.io.impls.InputStreamByteReceiverImpl
 
getConnectionStatus() - Method in class org.refcodes.io.impls.InputStreamReceiverImpl
 
getConnectionStatus() - Method in class org.refcodes.io.impls.OutputStreamByteSenderImpl
 
getConnectionStatus() - Method in class org.refcodes.io.impls.OutputStreamSenderImpl
 
getConnectionStatus() - Method in class org.refcodes.io.impls.PrefetchBidirectionalStreamByteTransceiverImpl
 
getConnectionStatus() - Method in class org.refcodes.io.impls.PrefetchBidirectionalStreamTransceiverImpl
 
getConnectionStatus() - Method in class org.refcodes.io.impls.PrefetchInputStreamByteReceiverImpl
 
getConnectionStatus() - Method in class org.refcodes.io.impls.PrefetchInputStreamReceiverImpl
 
getMaxConnections() - Method in interface org.refcodes.io.MaxConnectionsAccessor
Retrieves the maximum connections from the maximum connections property.
getNestedJarFileUrl(URL, File) - Static method in class org.refcodes.io.FileUtility
Determines whether an according destination file already exists for the file residing in a nested JAR.
getResourceAsStream(Class<?>, String) - Static method in class org.refcodes.io.FileUtility
Provides an InputStream for a resource found at the given path relative to the given class file (which might be inside a Java archive such as a JAR file or a WAR file).

H

hasDatagram() - Method in class org.refcodes.io.impls.AbstractByteReceiver
 
hasDatagram() - Method in class org.refcodes.io.impls.AbstractInputStreamByteReceiver
 
hasDatagram() - Method in class org.refcodes.io.impls.AbstractInputStreamReceiver
 
hasDatagram() - Method in class org.refcodes.io.impls.AbstractReceiver
 
hasDatagram() - Method in class org.refcodes.io.impls.BidirectionalStreamByteTransceiverImpl
 
hasDatagram() - Method in class org.refcodes.io.impls.BidirectionalStreamTransceiverImpl
 
hasDatagram() - Method in class org.refcodes.io.impls.InputStreamByteReceiverImpl
 
hasDatagram() - Method in class org.refcodes.io.impls.InputStreamReceiverImpl
 
hasDatagram() - Method in class org.refcodes.io.impls.PrefetchBidirectionalStreamByteTransceiverImpl
 
hasDatagram() - Method in class org.refcodes.io.impls.PrefetchBidirectionalStreamTransceiverImpl
 
hasDatagram() - Method in class org.refcodes.io.impls.PrefetchInputStreamByteReceiverImpl
 
hasDatagram() - Method in class org.refcodes.io.impls.PrefetchInputStreamReceiverImpl
 
hasDatagram() - Method in interface org.refcodes.io.Receivable
Determines whether a datagram is available from a DatagramSender and can be retrieved via the #readDatagram() method.
hasNext() - Method in class org.refcodes.io.impls.SerializableIteratorImpl
 
hasNext() - Method in class org.refcodes.io.impls.SerializableListIteratorImpl
 
hasPrevious() - Method in class org.refcodes.io.impls.SerializableListIteratorImpl
 

I

InputStreamByteReceiverImpl - Class in org.refcodes.io.impls
 
InputStreamByteReceiverImpl(InputStream) - Constructor for class org.refcodes.io.impls.InputStreamByteReceiverImpl
 
InputStreamConnectionByteReceiver - Interface in org.refcodes.io
InputStreamConnectionByteReceiverImpl - Class in org.refcodes.io.impls
Implementation of the InputStreamConnectionReceiver interface.
InputStreamConnectionByteReceiverImpl() - Constructor for class org.refcodes.io.impls.InputStreamConnectionByteReceiverImpl
 
InputStreamConnectionReceiver<DATA extends Serializable> - Interface in org.refcodes.io
InputStreamConnectionReceiverImpl<DATA extends Serializable> - Class in org.refcodes.io.impls
Implementation of the InputStreamConnectionReceiver interface.
InputStreamConnectionReceiverImpl() - Constructor for class org.refcodes.io.impls.InputStreamConnectionReceiverImpl
 
InputStreamReceiverImpl<DATA extends Serializable> - Class in org.refcodes.io.impls
 
InputStreamReceiverImpl(InputStream) - Constructor for class org.refcodes.io.impls.InputStreamReceiverImpl
 
isClosable() - Method in class org.refcodes.io.impls.BidirectionalStreamByteTransceiverImpl
 
isClosable() - Method in class org.refcodes.io.impls.BidirectionalStreamTransceiverImpl
 
isClosable() - Method in class org.refcodes.io.impls.InputStreamByteReceiverImpl
 
isClosable() - Method in class org.refcodes.io.impls.InputStreamReceiverImpl
 
isClosable() - Method in class org.refcodes.io.impls.OutputStreamByteSenderImpl
 
isClosable() - Method in class org.refcodes.io.impls.OutputStreamSenderImpl
 
isClosable() - Method in class org.refcodes.io.impls.PrefetchBidirectionalStreamByteTransceiverImpl
 
isClosable() - Method in class org.refcodes.io.impls.PrefetchBidirectionalStreamTransceiverImpl
 
isClosable() - Method in class org.refcodes.io.impls.PrefetchInputStreamByteReceiverImpl
 
isClosable() - Method in class org.refcodes.io.impls.PrefetchInputStreamReceiverImpl
 
isClosed() - Method in class org.refcodes.io.impls.BidirectionalStreamByteTransceiverImpl
 
isClosed() - Method in class org.refcodes.io.impls.BidirectionalStreamTransceiverImpl
 
isClosed() - Method in class org.refcodes.io.impls.InputStreamByteReceiverImpl
 
isClosed() - Method in class org.refcodes.io.impls.InputStreamReceiverImpl
 
isClosed() - Method in class org.refcodes.io.impls.OutputStreamByteSenderImpl
 
isClosed() - Method in class org.refcodes.io.impls.OutputStreamSenderImpl
 
isClosed() - Method in class org.refcodes.io.impls.PrefetchBidirectionalStreamByteTransceiverImpl
 
isClosed() - Method in class org.refcodes.io.impls.PrefetchBidirectionalStreamTransceiverImpl
 
isClosed() - Method in class org.refcodes.io.impls.PrefetchInputStreamByteReceiverImpl
 
isClosed() - Method in class org.refcodes.io.impls.PrefetchInputStreamReceiverImpl
 
isOpenable(InputStream) - Method in class org.refcodes.io.impls.AbstractInputStreamByteReceiver
 
isOpenable(InputStream) - Method in class org.refcodes.io.impls.AbstractInputStreamReceiver
 
isOpenable(InputStream) - Method in class org.refcodes.io.impls.AbstractPrefetchInputStreamByteReceiver
 
isOpenable(InputStream) - Method in class org.refcodes.io.impls.AbstractPrefetchInputStreamReceiver
 
isOpenable(InputStream, OutputStream) - Method in class org.refcodes.io.impls.BidirectionalStreamConnectionByteTransceiverImpl
 
isOpenable(InputStream, OutputStream) - Method in class org.refcodes.io.impls.BidirectionalStreamConnectionTransceiverImpl
 
isOpenable(InputStream) - Method in class org.refcodes.io.impls.InputStreamConnectionByteReceiverImpl
 
isOpenable(InputStream) - Method in class org.refcodes.io.impls.InputStreamConnectionReceiverImpl
 
isOpenable(LoopbackConnectionSender<DATA>) - Method in class org.refcodes.io.impls.LoopbackReceiverImpl
 
isOpenable(LoopbackConnectionReceiver<DATA>) - Method in class org.refcodes.io.impls.LoopbackSenderImpl
 
isOpenable(LoopbackConnectionTransceiver<DATA>) - Method in class org.refcodes.io.impls.LoopbackTransceiverImpl
 
isOpenable(OutputStream) - Method in class org.refcodes.io.impls.OutputStreamConnectionByteSenderImpl
 
isOpenable(OutputStream) - Method in class org.refcodes.io.impls.OutputStreamConnectionSenderImpl
 
isOpenable(InputStream, OutputStream) - Method in class org.refcodes.io.impls.PrefetchBidirectionalStreamConnectionByteTransceiverImpl
 
isOpenable(InputStream, OutputStream) - Method in class org.refcodes.io.impls.PrefetchBidirectionalStreamConnectionTransceiverImpl
 
isOpenable(InputStream) - Method in class org.refcodes.io.impls.PrefetchInputStreamConnectionByteReceiverImpl
 
isOpenable(InputStream) - Method in class org.refcodes.io.impls.PrefetchInputStreamConnectionReceiverImpl
 
isOpened() - Method in class org.refcodes.io.impls.BidirectionalStreamByteTransceiverImpl
 
isOpened() - Method in class org.refcodes.io.impls.BidirectionalStreamTransceiverImpl
 
isOpened() - Method in class org.refcodes.io.impls.InputStreamByteReceiverImpl
 
isOpened() - Method in class org.refcodes.io.impls.InputStreamReceiverImpl
 
isOpened() - Method in class org.refcodes.io.impls.OutputStreamByteSenderImpl
 
isOpened() - Method in class org.refcodes.io.impls.OutputStreamSenderImpl
 
isOpened() - Method in class org.refcodes.io.impls.PrefetchBidirectionalStreamByteTransceiverImpl
 
isOpened() - Method in class org.refcodes.io.impls.PrefetchBidirectionalStreamTransceiverImpl
 
isOpened() - Method in class org.refcodes.io.impls.PrefetchInputStreamByteReceiverImpl
 
isOpened() - Method in class org.refcodes.io.impls.PrefetchInputStreamReceiverImpl
 

L

LoopbackConnectionReceiver<DATA extends Serializable> - Interface in org.refcodes.io
A LoopbackConnectionReceiver is a DatagramReceiver connected directly within the same JVM with a LoopbackConnectionSender; a "loopback" connection is used for establishing the connection which cannot be accessed outside the JVM or the running machine.
LoopbackConnectionSender<DATA extends Serializable> - Interface in org.refcodes.io
A LoopbackConnectionSender is a DatagramSender connected directly within the same JVM with a LoopbackConnectionReceiver; a "loopback" connection is used for establishing the connection which cannot be accessed outside the JVM or the running machine.
LoopbackConnectionTransceiver<DATA extends Serializable> - Interface in org.refcodes.io
A LoopbackConnectionTransceiver is a DatagramTransceiver connected directly within the same JVM with another LoopbackConnectionTransceiver; a "loopback" connection is used for establishing the connection which cannot be accessed outside the JVM or the running machine.
LoopbackReceiverImpl<DATA extends Serializable> - Class in org.refcodes.io.impls
Implementation of the LoopbackConnectionReceiver interface.
LoopbackReceiverImpl() - Constructor for class org.refcodes.io.impls.LoopbackReceiverImpl
 
LoopbackReceiverImpl(int) - Constructor for class org.refcodes.io.impls.LoopbackReceiverImpl
 
LoopbackSenderImpl<DATA extends Serializable> - Class in org.refcodes.io.impls
 
LoopbackSenderImpl() - Constructor for class org.refcodes.io.impls.LoopbackSenderImpl
 
LoopbackTransceiverImpl<DATA extends Serializable> - Class in org.refcodes.io.impls
 
LoopbackTransceiverImpl() - Constructor for class org.refcodes.io.impls.LoopbackTransceiverImpl
 
LoopbackTransceiverImpl(int) - Constructor for class org.refcodes.io.impls.LoopbackTransceiverImpl
 

M

mark(int) - Method in interface org.refcodes.io.ByteDatagramInputStream
 
markSupported() - Method in interface org.refcodes.io.ByteDatagramInputStream
 
MaxConnectionsAccessor - Interface in org.refcodes.io
Provides an accessor for a maximum connections property.
MaxConnectionsAccessor.MaxConnectionsBuilder<B extends MaxConnectionsAccessor.MaxConnectionsBuilder<B>> - Interface in org.refcodes.io
Provides a builder method for a maximum connections property returning the builder for applying multiple build operations.
MaxConnectionsAccessor.MaxConnectionsMutator - Interface in org.refcodes.io
Provides a mutator for a maximum connections property.
MaxConnectionsAccessor.MaxConnectionsProperty - Interface in org.refcodes.io
Provides a maximum connections property.

N

next() - Method in class org.refcodes.io.impls.SerializableIteratorImpl
 
next() - Method in class org.refcodes.io.impls.SerializableListIteratorImpl
 
nextIndex() - Method in class org.refcodes.io.impls.SerializableListIteratorImpl
 

O

open(InputStream) - Method in class org.refcodes.io.impls.AbstractInputStreamByteReceiver
 
open(InputStream) - Method in class org.refcodes.io.impls.AbstractInputStreamReceiver
 
open(InputStream) - Method in class org.refcodes.io.impls.AbstractPrefetchInputStreamByteReceiver
 
open(InputStream) - Method in class org.refcodes.io.impls.AbstractPrefetchInputStreamReceiver
 
open(InputStream, OutputStream) - Method in class org.refcodes.io.impls.BidirectionalStreamConnectionByteTransceiverImpl
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 BidirectionalStreamConnectionByteTransceiverImpl.open(OutputStream) method.
open(OutputStream) - Method in class org.refcodes.io.impls.BidirectionalStreamConnectionByteTransceiverImpl
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 BidirectionalStreamConnectionByteTransceiverImpl.open(OutputStream) method.
open(InputStream, OutputStream) - Method in class org.refcodes.io.impls.BidirectionalStreamConnectionTransceiverImpl
------------------------------------------------------------------------- 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 BidirectionalStreamConnectionTransceiverImpl.open(OutputStream) method.
open(OutputStream) - Method in class org.refcodes.io.impls.BidirectionalStreamConnectionTransceiverImpl
------------------------------------------------------------------------- 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 BidirectionalStreamConnectionTransceiverImpl.open(OutputStream) method.
open(InputStream) - Method in class org.refcodes.io.impls.InputStreamConnectionByteReceiverImpl
 
open(InputStream) - Method in class org.refcodes.io.impls.InputStreamConnectionReceiverImpl
 
open(LoopbackConnectionSender<DATA>) - Method in class org.refcodes.io.impls.LoopbackReceiverImpl
 
open(LoopbackConnectionReceiver<DATA>) - Method in class org.refcodes.io.impls.LoopbackSenderImpl
 
open(LoopbackConnectionTransceiver<DATA>) - Method in class org.refcodes.io.impls.LoopbackTransceiverImpl
 
open(OutputStream) - Method in class org.refcodes.io.impls.OutputStreamConnectionByteSenderImpl
----------------------------------------------------------- -------------- 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 OutputStreamConnectionByteSenderImpl.open(OutputStream) method.
open(OutputStream) - Method in class org.refcodes.io.impls.OutputStreamConnectionSenderImpl
------------------------------------------------------------------------- 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 OutputStreamConnectionSenderImpl.open(OutputStream) method.
open(InputStream, OutputStream) - Method in class org.refcodes.io.impls.PrefetchBidirectionalStreamConnectionByteTransceiverImpl
------------------------------------------------------------------------- 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 PrefetchBidirectionalStreamConnectionByteTransceiverImpl.open(OutputStream) method.
open(OutputStream) - Method in class org.refcodes.io.impls.PrefetchBidirectionalStreamConnectionByteTransceiverImpl
------------------------------------------------------------------------- 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 PrefetchBidirectionalStreamConnectionByteTransceiverImpl.open(OutputStream) method.
open(InputStream, OutputStream) - Method in class org.refcodes.io.impls.PrefetchBidirectionalStreamConnectionTransceiverImpl
------------------------------------------------------------------------- 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 PrefetchBidirectionalStreamConnectionTransceiverImpl.open(OutputStream) method.
open(OutputStream) - Method in class org.refcodes.io.impls.PrefetchBidirectionalStreamConnectionTransceiverImpl
----------------------------------------------------------- -------------- 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 PrefetchBidirectionalStreamConnectionTransceiverImpl.open(OutputStream) method.
open(InputStream) - Method in class org.refcodes.io.impls.PrefetchInputStreamConnectionByteReceiverImpl
 
open(InputStream) - Method in class org.refcodes.io.impls.PrefetchInputStreamConnectionReceiverImpl
 
org.refcodes.io - package org.refcodes.io
 
org.refcodes.io.impls - package org.refcodes.io.impls
 
OutputStreamByteSenderImpl - Class in org.refcodes.io.impls
 
OutputStreamByteSenderImpl(OutputStream) - Constructor for class org.refcodes.io.impls.OutputStreamByteSenderImpl
 
OutputStreamConnectionByteSender - Interface in org.refcodes.io
OutputStreamConnectionByteSenderImpl - Class in org.refcodes.io.impls
Implementation of the OutputStreamConnectionSender interface.
OutputStreamConnectionByteSenderImpl() - Constructor for class org.refcodes.io.impls.OutputStreamConnectionByteSenderImpl
 
OutputStreamConnectionSender<DATA extends Serializable> - Interface in org.refcodes.io
OutputStreamConnectionSenderImpl<DATA extends Serializable> - Class in org.refcodes.io.impls
Implementation of the OutputStreamConnectionSender interface.
OutputStreamConnectionSenderImpl() - Constructor for class org.refcodes.io.impls.OutputStreamConnectionSenderImpl
 
OutputStreamSenderImpl<DATA extends Serializable> - Class in org.refcodes.io.impls
 
OutputStreamSenderImpl(OutputStream) - Constructor for class org.refcodes.io.impls.OutputStreamSenderImpl
 

P

PrefetchBidirectionalStreamByteTransceiverImpl - Class in org.refcodes.io.impls
 
PrefetchBidirectionalStreamByteTransceiverImpl(InputStream, OutputStream) - Constructor for class org.refcodes.io.impls.PrefetchBidirectionalStreamByteTransceiverImpl
 
PrefetchBidirectionalStreamConnectionByteTransceiverImpl - Class in org.refcodes.io.impls
 
PrefetchBidirectionalStreamConnectionByteTransceiverImpl() - Constructor for class org.refcodes.io.impls.PrefetchBidirectionalStreamConnectionByteTransceiverImpl
 
PrefetchBidirectionalStreamConnectionTransceiverImpl<DATA extends Serializable> - Class in org.refcodes.io.impls
 
PrefetchBidirectionalStreamConnectionTransceiverImpl() - Constructor for class org.refcodes.io.impls.PrefetchBidirectionalStreamConnectionTransceiverImpl
 
PrefetchBidirectionalStreamConnectionTransceiverImpl(ExecutorService) - Constructor for class org.refcodes.io.impls.PrefetchBidirectionalStreamConnectionTransceiverImpl
 
PrefetchBidirectionalStreamTransceiverImpl<DATA extends Serializable> - Class in org.refcodes.io.impls
 
PrefetchBidirectionalStreamTransceiverImpl(InputStream, OutputStream) - Constructor for class org.refcodes.io.impls.PrefetchBidirectionalStreamTransceiverImpl
 
PrefetchBidirectionalStreamTransceiverImpl(InputStream, OutputStream, ExecutorService) - Constructor for class org.refcodes.io.impls.PrefetchBidirectionalStreamTransceiverImpl
 
PrefetchInputStreamByteReceiverImpl - Class in org.refcodes.io.impls
 
PrefetchInputStreamByteReceiverImpl(InputStream) - Constructor for class org.refcodes.io.impls.PrefetchInputStreamByteReceiverImpl
 
PrefetchInputStreamConnectionByteReceiverImpl - Class in org.refcodes.io.impls
Implementation of the InputStreamConnectionReceiver interface.
PrefetchInputStreamConnectionByteReceiverImpl() - Constructor for class org.refcodes.io.impls.PrefetchInputStreamConnectionByteReceiverImpl
 
PrefetchInputStreamConnectionReceiverImpl<DATA extends Serializable> - Class in org.refcodes.io.impls
Implementation of the InputStreamConnectionReceiver interface.
PrefetchInputStreamConnectionReceiverImpl() - Constructor for class org.refcodes.io.impls.PrefetchInputStreamConnectionReceiverImpl
 
PrefetchInputStreamConnectionReceiverImpl(ExecutorService) - Constructor for class org.refcodes.io.impls.PrefetchInputStreamConnectionReceiverImpl
 
PrefetchInputStreamReceiverImpl<DATA extends Serializable> - Class in org.refcodes.io.impls
 
PrefetchInputStreamReceiverImpl(InputStream) - Constructor for class org.refcodes.io.impls.PrefetchInputStreamReceiverImpl
 
PrefetchInputStreamReceiverImpl(InputStream, ExecutorService) - Constructor for class org.refcodes.io.impls.PrefetchInputStreamReceiverImpl
 
previous() - Method in class org.refcodes.io.impls.SerializableListIteratorImpl
 
previousIndex() - Method in class org.refcodes.io.impls.SerializableListIteratorImpl
 
pushDatagram(byte) - Method in class org.refcodes.io.impls.AbstractByteReceiver
Pushes a datagram into the receiver and puts it into the blocking queue containing the so far received datagrams.
pushDatagram(DATA) - Method in class org.refcodes.io.impls.AbstractReceiver
Pushes a datagram into the receiver and puts it into the blocking queue containing the so far received datagrams.
pushDatagram(DATA) - Method in class org.refcodes.io.impls.LoopbackReceiverImpl
 
pushDatagram(DATA) - Method in class org.refcodes.io.impls.LoopbackTransceiverImpl
 
pushDatagram(DATA) - Method in interface org.refcodes.io.LoopbackConnectionReceiver
Pushes a datagram into the LoopbackConnectionReceiver.
pushDatagram(DATA) - Method in interface org.refcodes.io.LoopbackConnectionTransceiver
Pushes a datagram into the LoopbackConnectionReceiver.

R

read() - Method in interface org.refcodes.io.ByteDatagramInputStream
 
read(byte[]) - Method in interface org.refcodes.io.ByteDatagramInputStream
 
read(byte[], int, int) - Method in interface org.refcodes.io.ByteDatagramInputStream
 
readDatagram() - Method in interface org.refcodes.io.ByteDatagramReceiver
Reads (receives) the next byte passed from a DatagramSender counterpart.
readDatagram() - Method in interface org.refcodes.io.DatagramReceiver
Reads (receives) the next datagram passed from a DatagramSender counterpart.
readDatagram() - Method in class org.refcodes.io.impls.AbstractByteReceiver
 
readDatagram() - Method in class org.refcodes.io.impls.AbstractInputStreamByteReceiver
 
readDatagram() - Method in class org.refcodes.io.impls.AbstractInputStreamReceiver
 
readDatagram() - Method in class org.refcodes.io.impls.AbstractReceiver
 
readDatagram() - Method in class org.refcodes.io.impls.BidirectionalStreamByteTransceiverImpl
 
readDatagram() - Method in class org.refcodes.io.impls.BidirectionalStreamTransceiverImpl
 
readDatagram() - Method in class org.refcodes.io.impls.InputStreamByteReceiverImpl
 
readDatagram() - Method in class org.refcodes.io.impls.InputStreamReceiverImpl
 
readDatagram() - Method in class org.refcodes.io.impls.PrefetchBidirectionalStreamByteTransceiverImpl
 
readDatagram() - Method in class org.refcodes.io.impls.PrefetchBidirectionalStreamTransceiverImpl
 
readDatagram() - Method in class org.refcodes.io.impls.PrefetchInputStreamByteReceiverImpl
 
readDatagram() - Method in class org.refcodes.io.impls.PrefetchInputStreamReceiverImpl
 
readDatagrams() - Method in interface org.refcodes.io.BlockReceiver
Reads (receives) the next datagram block passed from a BlockSender or DatagramSender counterpart.
readDatagrams() - Method in interface org.refcodes.io.ByteBlockReceiver
Reads (receives) the next byte block passed from a BlockSender or DatagramSender counterpart.
readDatagrams() - Method in interface org.refcodes.io.ByteReceiver
 
readDatagrams() - Method in class org.refcodes.io.impls.AbstractByteReceiver
 
readDatagrams() - Method in class org.refcodes.io.impls.AbstractReceiver
 
readDatagrams() - Method in class org.refcodes.io.impls.BidirectionalStreamByteTransceiverImpl
 
readDatagrams() - Method in class org.refcodes.io.impls.BidirectionalStreamTransceiverImpl
 
readDatagrams() - Method in class org.refcodes.io.impls.InputStreamByteReceiverImpl
 
readDatagrams() - Method in class org.refcodes.io.impls.InputStreamReceiverImpl
 
readDatagrams() - Method in class org.refcodes.io.impls.PrefetchBidirectionalStreamByteTransceiverImpl
 
readDatagrams() - Method in class org.refcodes.io.impls.PrefetchBidirectionalStreamTransceiverImpl
 
readDatagrams() - Method in class org.refcodes.io.impls.PrefetchInputStreamByteReceiverImpl
 
readDatagrams() - Method in class org.refcodes.io.impls.PrefetchInputStreamReceiverImpl
 
readDatagrams() - Method in interface org.refcodes.io.Receiver
 
Receivable - Interface in org.refcodes.io
 
Receiver<DATA extends Serializable> - Interface in org.refcodes.io
 
releaseAll() - Method in class org.refcodes.io.impls.AbstractByteReceiver
 
releaseAll() - Method in class org.refcodes.io.impls.AbstractInputStreamByteReceiver
 
releaseAll() - Method in class org.refcodes.io.impls.AbstractInputStreamReceiver
 
releaseAll() - Method in class org.refcodes.io.impls.AbstractReceiver
 
releaseAll() - Method in class org.refcodes.io.impls.BidirectionalStreamByteTransceiverImpl
 
releaseAll() - Method in class org.refcodes.io.impls.BidirectionalStreamTransceiverImpl
 
releaseAll() - Method in class org.refcodes.io.impls.InputStreamByteReceiverImpl
 
releaseAll() - Method in class org.refcodes.io.impls.InputStreamReceiverImpl
 
releaseAll() - Method in class org.refcodes.io.impls.PrefetchBidirectionalStreamByteTransceiverImpl
 
releaseAll() - Method in class org.refcodes.io.impls.PrefetchBidirectionalStreamTransceiverImpl
 
releaseAll() - Method in class org.refcodes.io.impls.PrefetchInputStreamByteReceiverImpl
 
releaseAll() - Method in class org.refcodes.io.impls.PrefetchInputStreamReceiverImpl
 
remove() - Method in class org.refcodes.io.impls.SerializableIteratorImpl
 
remove() - Method in class org.refcodes.io.impls.SerializableListIteratorImpl
 
reset() - Method in interface org.refcodes.io.ByteDatagramInputStream
 
resolveClass(ObjectStreamClass) - Method in class org.refcodes.io.impls.SerializableObjectInputStreamImpl
 

S

Sendable - Interface in org.refcodes.io
 
Sender<DATA extends Serializable> - Interface in org.refcodes.io
 
SerializableIteratorImpl<T> - Class in org.refcodes.io.impls
Makes the wrapped Iterator serializable, else passing Iterator instances would cause an NotSerializableException or similar.
SerializableIteratorImpl() - Constructor for class org.refcodes.io.impls.SerializableIteratorImpl
 
SerializableIteratorImpl(Iterator<T>) - Constructor for class org.refcodes.io.impls.SerializableIteratorImpl
 
SerializableListIteratorImpl<T> - Class in org.refcodes.io.impls
Makes the wrapped ListIterator serializable, else passing ListIterator instances would cause an NotSerializableException or similar.
SerializableListIteratorImpl() - Constructor for class org.refcodes.io.impls.SerializableListIteratorImpl
 
SerializableListIteratorImpl(ListIterator<T>) - Constructor for class org.refcodes.io.impls.SerializableListIteratorImpl
 
SerializableObjectInputStreamImpl - Class in org.refcodes.io.impls
The SerializableObjectInputStreamImpl extends an ordinary ObjectInputStream to also resolve primitive types.
SerializableObjectInputStreamImpl(InputStream) - Constructor for class org.refcodes.io.impls.SerializableObjectInputStreamImpl
 
SerializeUtility - Class in org.refcodes.io
Utility providing useful serialization methods.
set(T) - Method in class org.refcodes.io.impls.SerializableListIteratorImpl
 
setMaxConnections(String) - Method in interface org.refcodes.io.MaxConnectionsAccessor.MaxConnectionsMutator
Sets the maximum connections for the maximum connections property.
skip(long) - Method in interface org.refcodes.io.ByteDatagramInputStream
 

T

toFileNameFromZip(String) - Static method in class org.refcodes.io.impls.ZipFileInputStreamImpl
Truncates the ".zip" suffix from the filename and returns the result.
toFileNameFromZip(String) - Static method in class org.refcodes.io.impls.ZipFileOutputStreamImpl
 
toInputStream(File) - Static method in class org.refcodes.io.impls.ZipFileInputStreamImpl
Returns an InputStream from the provided File.
toJarHierarchy(URL) - Static method in class org.refcodes.io.FileUtility
Takes an URL pointing into a (nested) JAR resources and returns a list of JAR archive names (including the ".jar" suffix) in the order of their nesting, the first JAR archive being the outermost (parent) archive and the last JAR archive being the innermost archive.
toNestedJarFileUrl(URL, File) - Static method in class org.refcodes.io.FileUtility
Convenience method testing whether the given JAR file resource already exists in the expected folder layout .Returns its URL in case it already exists else it is being created and then the URL is returned.
toOutputStream(File) - Static method in class org.refcodes.io.impls.ZipFileOutputStreamImpl
Returns an OutputStream to the provided File.
toParentJarUrl() - Static method in class org.refcodes.io.FileUtility
Determines the parent JAR file's URL for your running application (not including the "!"
toSerializable(Object) - Static method in class org.refcodes.io.SerializeUtility
Converts instances of common non-serializable types such as Iterator and ListIterator into serializable instances.
toTempFileName() - Static method in class org.refcodes.io.FileUtility
Generates a file name for a temporary file consisting if the current time in milliseconds and a portion of random character to avoid name clashes: "temp-012345678901234567890123456789-abcdefgh".
Transceiver<DATA extends Serializable> - Interface in org.refcodes.io
 

W

withMaxConnections(String) - Method in interface org.refcodes.io.MaxConnectionsAccessor.MaxConnectionsBuilder
Sets the maximum connections for the maximum connections property.
write(int) - Method in interface org.refcodes.io.ByteDatagramOutputStream
 
write(byte[]) - Method in interface org.refcodes.io.ByteDatagramOutputStream
 
write(byte[], int, int) - Method in interface org.refcodes.io.ByteDatagramOutputStream
 
writeDatagram(byte) - Method in interface org.refcodes.io.ByteDatagramSender
Writes (sends) a byte to a listening DatagramReceiver.
writeDatagram(DATA) - Method in interface org.refcodes.io.DatagramSender
Writes (sends) a datagram to a listening DatagramReceiver.
writeDatagram(byte) - Method in class org.refcodes.io.impls.BidirectionalStreamByteTransceiverImpl
 
writeDatagram(byte) - Method in class org.refcodes.io.impls.BidirectionalStreamConnectionByteTransceiverImpl
ATTENTION: For maintainers, please keep the below code in sync with the code from OutputStreamConnectionSenderImpl.writeDatagram(Serializable).
writeDatagram(DATA) - Method in class org.refcodes.io.impls.BidirectionalStreamConnectionTransceiverImpl
Writes (sends) a datagram to a listening DatagramReceiver.
writeDatagram(DATA) - Method in class org.refcodes.io.impls.BidirectionalStreamTransceiverImpl
 
writeDatagram(DATA) - Method in class org.refcodes.io.impls.LoopbackSenderImpl
 
writeDatagram(DATA) - Method in class org.refcodes.io.impls.LoopbackTransceiverImpl
 
writeDatagram(byte) - Method in class org.refcodes.io.impls.OutputStreamByteSenderImpl
 
writeDatagram(byte) - Method in class org.refcodes.io.impls.OutputStreamConnectionByteSenderImpl
Writes (sends) a byte to a listening DatagramReceiver.
writeDatagram(DATA) - Method in class org.refcodes.io.impls.OutputStreamConnectionSenderImpl
Writes (sends) a datagram to a listening DatagramReceiver.
writeDatagram(DATA) - Method in class org.refcodes.io.impls.OutputStreamSenderImpl
 
writeDatagram(byte) - Method in class org.refcodes.io.impls.PrefetchBidirectionalStreamByteTransceiverImpl
 
writeDatagram(byte) - Method in class org.refcodes.io.impls.PrefetchBidirectionalStreamConnectionByteTransceiverImpl
------------------------------------------------------------------------- ATTENTION: For maintainers, please keep the below code in sync with the code from OutputStreamConnectionSenderImpl.writeDatagram(Serializable)
writeDatagram(DATA) - Method in class org.refcodes.io.impls.PrefetchBidirectionalStreamConnectionTransceiverImpl
------------------------------------------------------------------------- ATTENTION: For maintainers, please keep the below code in sync with the code from OutputStreamConnectionSenderImpl.writeDatagram(Serializable)
writeDatagram(DATA) - Method in class org.refcodes.io.impls.PrefetchBidirectionalStreamTransceiverImpl
 
writeDatagrams(DATA[]) - Method in interface org.refcodes.io.BlockSender
Writes (sends) a datagram block to a listening DatagramReceiver or BlockReceiver.
writeDatagrams(DATA[], int, int) - Method in interface org.refcodes.io.BlockSender
 
writeDatagrams(byte[]) - Method in interface org.refcodes.io.ByteBlockSender
Writes (sends) a byte block to a listening DatagramReceiver or BlockReceiver.
writeDatagrams(byte[], int, int) - Method in interface org.refcodes.io.ByteBlockSender
 
writeDatagrams(byte[]) - Method in interface org.refcodes.io.ByteSender
 
writeDatagrams(byte[], int, int) - Method in interface org.refcodes.io.ByteSender
 
writeDatagrams(byte[]) - Method in class org.refcodes.io.impls.BidirectionalStreamByteTransceiverImpl
 
writeDatagrams(byte[], int, int) - Method in class org.refcodes.io.impls.BidirectionalStreamByteTransceiverImpl
 
writeDatagrams(DATA[]) - Method in class org.refcodes.io.impls.BidirectionalStreamTransceiverImpl
 
writeDatagrams(DATA[], int, int) - Method in class org.refcodes.io.impls.BidirectionalStreamTransceiverImpl
 
writeDatagrams(byte[]) - Method in class org.refcodes.io.impls.OutputStreamByteSenderImpl
 
writeDatagrams(byte[], int, int) - Method in class org.refcodes.io.impls.OutputStreamByteSenderImpl
 
writeDatagrams(DATA[]) - Method in class org.refcodes.io.impls.OutputStreamSenderImpl
 
writeDatagrams(DATA[], int, int) - Method in class org.refcodes.io.impls.OutputStreamSenderImpl
 
writeDatagrams(byte[]) - Method in class org.refcodes.io.impls.PrefetchBidirectionalStreamByteTransceiverImpl
 
writeDatagrams(byte[], int, int) - Method in class org.refcodes.io.impls.PrefetchBidirectionalStreamByteTransceiverImpl
 
writeDatagrams(DATA[]) - Method in class org.refcodes.io.impls.PrefetchBidirectionalStreamTransceiverImpl
 
writeDatagrams(DATA[], int, int) - Method in class org.refcodes.io.impls.PrefetchBidirectionalStreamTransceiverImpl
 
writeDatagrams(DATA[]) - Method in interface org.refcodes.io.Sender
 
writeDatagrams(DATA[], int, int) - Method in interface org.refcodes.io.Sender
 

Z

ZipFileInputStreamImpl - Class in org.refcodes.io.impls
Represents an InputStream from a provided File: In case the file points to a ZIP compressed file, then the uncompressed data of the therein contained file with the same name excluding the ".zip" extension is provided by the InputStream.
ZipFileInputStreamImpl(File, String) - Constructor for class org.refcodes.io.impls.ZipFileInputStreamImpl
 
ZipFileInputStreamImpl(String, String) - Constructor for class org.refcodes.io.impls.ZipFileInputStreamImpl
 
ZipFileInputStreamImpl(String) - Constructor for class org.refcodes.io.impls.ZipFileInputStreamImpl
 
ZipFileInputStreamImpl(URI) - Constructor for class org.refcodes.io.impls.ZipFileInputStreamImpl
 
ZipFileInputStreamImpl(File) - Constructor for class org.refcodes.io.impls.ZipFileInputStreamImpl
 
ZipFileOutputStreamImpl - Class in org.refcodes.io.impls
Represents an OutputStream to a provided File: In case the file points to a ZIP compressed file, then a therein to be contained file with the same name excluding the ".zip" extension is created by the OutputStream.
ZipFileOutputStreamImpl(File, String) - Constructor for class org.refcodes.io.impls.ZipFileOutputStreamImpl
 
ZipFileOutputStreamImpl(String, String) - Constructor for class org.refcodes.io.impls.ZipFileOutputStreamImpl
 
ZipFileOutputStreamImpl(String) - Constructor for class org.refcodes.io.impls.ZipFileOutputStreamImpl
 
ZipFileOutputStreamImpl(URI) - Constructor for class org.refcodes.io.impls.ZipFileOutputStreamImpl
 
ZipFileOutputStreamImpl(File) - Constructor for class org.refcodes.io.impls.ZipFileOutputStreamImpl
 

_

_datagramQueue - Variable in class org.refcodes.io.impls.AbstractByteReceiver
 
A B C D F G H I L M N O P R S T W Z _ 
Skip navigation links

Copyright © 2016. All rights reserved.