Uses of Interface
com.tangosol.io.InputStreaming
-
Packages that use InputStreaming Package Description com.tangosol.io Contains classes providing cache persistence of serialized objects.com.tangosol.io.nio Contains classes related to J2SE 1.4 NIO functionality.com.tangosol.io.pof Contains classes related to POF serialization and deserialization.com.tangosol.util Contains various generic utilities. -
-
Uses of InputStreaming in com.tangosol.io
Subinterfaces of InputStreaming in com.tangosol.io Modifier and Type Interface Description static interface
ReadBuffer.BufferInput
The BufferInput interface represents a DataInputStream on top of a ReadBuffer.Classes in com.tangosol.io that implement InputStreaming Modifier and Type Class Description class
AbstractByteArrayReadBuffer.ByteArrayBufferInput
This is a simple implementation of the BufferInput interface on top of a byte array.class
AbstractReadBuffer.AbstractBufferInput
This is an implementation of the BufferInput interface that delegates its work back to its ReadBuffer.class
Base64InputStream
Reads binary data from a Reader using IETF RFC 2045 Base64 Content Transfer Encoding.class
MultiBufferReadBuffer.MultiBufferInput
An implementation of the BufferInput interface that is backed by a series of the underlying ReadBuffer BufferInput objects.class
MultiByteArrayInputStream
Reads binary data from a series of byte arrays.class
PackedDataInputStream
This is an imitation DataInputStream class that reads from streams that were produced by a correspondingPackedDataOutputStream
.class
WrapperBufferInput
This is an imitation BufferInput implementation that provides the BufferInput interface by delegating to an object that implements the DataInput interface.static class
WrapperBufferInput.VersionAwareBufferInput
A BufferInput implementation that in addition to delegating to the given DataInput provides an API to check whether the sender of the content of this BufferInput runs a version that supersedes (greater or equal to) the specified version.class
WrapperDataInputStream
This is an imitation DataInputStream class that provides the DataInput interface by delegating to an object that implements the DataInput interface.class
WrapperInputStream
This is an InputStream class that delegates to another InputStream.class
WrapperObjectInputStream
This is an imitation ObjectInputStream class that provides the ObjectInput interface by delegating to an object that implements the ObjectInput interface.Methods in com.tangosol.io with parameters of type InputStreaming Modifier and Type Method Description protected int
AbstractWriteBuffer. copyStream(int ofDest, InputStreaming stream, int cbMax)
Store the remaining contents of the specified InputStreaming object at the specified offset within this buffer.protected int
ByteArrayWriteBuffer. copyStream(int ofDest, InputStreaming stream, int cbMax)
Store the remaining contents of the specified InputStreaming object at the specified offset within this buffer.protected int
DelegatingWriteBuffer. copyStream(int ofDest, InputStreaming stream, int cbMax)
Store the remaining contents of the specified InputStreaming object at the specified offset within this buffer.void
AbstractWriteBuffer. write(int ofDest, InputStreaming stream)
Store the remaining contents of the specified InputStreaming object at the specified offset within this buffer.void
AbstractWriteBuffer. write(int ofDest, InputStreaming stream, int cbSrc)
Store the specified number of bytes from the specified InputStreaming object at the specified offset within this buffer.void
ByteArrayWriteBuffer. write(int ofDest, InputStreaming stream, int cbSrc)
Store the specified number of bytes from the specified InputStreaming object at the specified offset within this buffer.void
DelegatingWriteBuffer. write(int ofDest, InputStreaming stream)
Store the remaining contents of the specified InputStreaming object at the specified offset within this buffer.void
DelegatingWriteBuffer. write(int ofDest, InputStreaming stream, int cbSrc)
Store the specified number of bytes from the specified InputStreaming object at the specified offset within this buffer.void
WriteBuffer. write(int ofDest, InputStreaming stream)
Store the remaining contents of the specified InputStreaming object at the specified offset within this buffer.void
WriteBuffer. write(int ofDest, InputStreaming stream, int cbSrc)
Store the specified number of bytes from the specified InputStreaming object at the specified offset within this buffer.void
AbstractWriteBuffer.AbstractBufferOutput. writeStream(InputStreaming stream)
Write the remaining contents of the specified InputStreaming object.void
AbstractWriteBuffer.AbstractBufferOutput. writeStream(InputStreaming stream, int cb)
Write the specified number of bytes of the specified InputStreaming object.void
DelegatingWriteBuffer.DelegatingBufferOutput. writeStream(InputStreaming stream)
Write the remaining contents of the specified InputStreaming object.void
DelegatingWriteBuffer.DelegatingBufferOutput. writeStream(InputStreaming stream, int cb)
Write the specified number of bytes of the specified InputStreaming object.void
MultiBufferWriteBuffer.MultiBufferOutput. writeStream(InputStreaming stream)
Write the remaining contents of the specified InputStreaming object.void
MultiBufferWriteBuffer.MultiBufferOutput. writeStream(InputStreaming stream, int cb)
Write the specified number of bytes of the specified InputStreaming object.void
SizeEstimatingBufferOutput. writeStream(InputStreaming stream)
void
SizeEstimatingBufferOutput. writeStream(InputStreaming stream, int cb)
void
WrapperBufferOutput. writeStream(InputStreaming stream)
Write the remaining contents of the specified InputStreaming object.void
WrapperBufferOutput. writeStream(InputStreaming stream, int cb)
Write the specified number of bytes of the specified InputStreaming object.void
WriteBuffer.BufferOutput. writeStream(InputStreaming stream)
Write the remaining contents of the specified InputStreaming object.void
WriteBuffer.BufferOutput. writeStream(InputStreaming stream, int cb)
Write the specified number of bytes of the specified InputStreaming object. -
Uses of InputStreaming in com.tangosol.io.nio
Classes in com.tangosol.io.nio that implement InputStreaming Modifier and Type Class Description class
ByteBufferInputStream
An InputStream implementation on top of a Java NIO ByteBuffer.class
ByteBufferReadBuffer.ByteBufferInput
This is a simple implementation of the BufferInput interface on top of a ByteBuffer. -
Uses of InputStreaming in com.tangosol.io.pof
Classes in com.tangosol.io.pof that implement InputStreaming Modifier and Type Class Description class
PofInputStream
An ObjectInput implementation suitable for reading Externalizable and ExternalizableLite objects from a POF stream, although without support for schema evolution and other advanced POF features. -
Uses of InputStreaming in com.tangosol.util
Classes in com.tangosol.util that implement InputStreaming Modifier and Type Class Description static class
ExternalizableHelper.ShieldedInputStream
An InputStream that delegates all operations other than close to an underlying InputStream.
-