Uses of Interface
com.tangosol.io.InputStreaming

Packages that use InputStreaming
Package
Description
Contains classes providing cache persistence of serialized objects.
Contains classes related to J2SE 1.4 NIO functionality.
Contains classes related to POF serialization and deserialization.
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 
    The BufferInput interface represents a DataInputStream on top of a ReadBuffer.
    Classes in com.tangosol.io that implement InputStreaming
    Modifier and Type
    Class
    Description
    final class 
    This is a simple implementation of the BufferInput interface on top of a byte array.
    class 
    This is an implementation of the BufferInput interface that delegates its work back to its ReadBuffer.
    class 
    Reads binary data from a Reader using IETF RFC 2045 Base64 Content Transfer Encoding.
    final class 
    An implementation of the BufferInput interface that is backed by a series of the underlying ReadBuffer BufferInput objects.
    class 
    Reads binary data from a series of byte arrays.
    class 
    This is an imitation DataInputStream class that reads from streams that were produced by a corresponding PackedDataOutputStream.
    class 
    This is an imitation BufferInput implementation that provides the BufferInput interface by delegating to an object that implements the DataInput interface.
    static class 
    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 
    This is an imitation DataInputStream class that provides the DataInput interface by delegating to an object that implements the DataInput interface.
    class 
    This is an InputStream class that delegates to another InputStream.
    class 
    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 final 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.
    final 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 
    An InputStream implementation on top of a Java NIO ByteBuffer.
    final class 
    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 
    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 
    An InputStream that delegates all operations other than close to an underlying InputStream.