Package com.tangosol.io


package com.tangosol.io
Contains classes providing cache persistence of serialized objects.
  • Class
    Description
    Abstract implementation of the BinaryStore interface.
    The AbstractByteArrayReadBuffer abstract class is intended to serve as a base class for the following: the pre-existing Binary class a new byte[] based class that does not attempt to add the immutability aspect provided by the Binary class a new ByteBuffer based class that will work with Java NIO
    An abstract base class for implementing Evolvable objects.
    Abstract base implementation of the ReadBuffer interface.
    The AbstractWriteBuffer is a partial implementation of the WriteBuffer interface intended to be used as a base class for easily creating concrete WriteBuffer implementations.
    An AsyncBinaryStore is a BinaryStore wrapper that performs the "O" (output) portion of its I/O asynchronously on a daemon thread.
    An AsyncBinaryStoreManager is a wrapper BinaryStoreManager that creates wrapper AsyncBinaryStore objects.
    Reads binary data from a Reader using IETF RFC 2045 Base64 Content Transfer Encoding.
    Writes binary data into a Writer using IETF RFC 2045 Base64 Content Transfer Encoding.
    A DeltaCompressor implementation that works with opaque (binary) values.
    A simple mapping of CacheStore operations for Binary objects into a Java interface.
    If a BinaryStore is aware of which keys that it stores, then it should implement this optional interface in order to allow that information to be efficiently communicated to an intelligent consumer of the BinaryStore interface.
    If a BinaryStore is aware of the number of keys that it stores, then it should implement this optional interface in order to allow that information to be efficiently communicated to an intelligent consumer of the BinaryStore interface.
    A manager that is capable of creating and destroying BinaryStore objects.
    A ReadBuffer on top of a byte array.
    ByteArrayWriteBuffer is an implementation of WriteBuffer on a byte array.
    Allocator is a WriteBufferPool implementation which allocates a new ByteArrayWriteBuffer on each request to the pool, and does not retain the returned buffer.
    The ClassLoaderAware interface provides the ability to configure a ClassLoader to be used by the implementing object when loading classes or resources.
    Deprecated.
    This is an imitation DataOutputStream class that logs the output in a human-readable format for debugging purposes.
    A DeltaCompressor implementation that works with decorated binary values.
    DecorationOnlyDeltaCompressor is a DeltaCompressor which optimizes for "decoration-only" updates.
    A Serializer implementation that uses the ExternalizableHelper implementation for serialization and deserialization of objects.
    A DelegatingWriteBuffer is a WriteBuffer that writes through to an underlying (or "containing") WriteBuffer.
    The DeltaCompressor interface provides the capability of comparing two in-memory buffers containing an old and a new value, and producing a result (called a "delta") that can be applied to the old value to create the new value.
    The Evolvable interface is implemented by classes that require forwards- and backwards-compatibility of their serialized form.
    Optimized serialization.
    The ExternalizableLiteSerializer interface provides the capability of reading and writing a Java object from and to a DataInput/DataOutput stream.
    Class-level annotation specifying serializer for this type.
    A Collection of helper methods for files.
    An IndentingWriter is used to indent line-based output to an underlying Writer.
    This is the interface represented by the Java InputStream class.
    The MultiBufferReadBuffer is a ReadBuffer implementation that presents a view across any number of underlying ReadBuffer objects, as if they were appended end-to-end into a single ReadBuffer.
    The MultiBufferWriteBuffer is used to present a single WriteBuffer that collects together a sequence of underlying WriteBuffer objects, and which grows by allocating additional WriteBuffer objects as necessary.
    A WriteBufferPool is used to dynamically allocate WriteBuffer objects as the MultiBufferWriteBuffer requires them.
    Reads binary data from a series of byte arrays.
    An OutputStream that accumulates the written data to a series of byte arrays that do not exceed a specified size.
    A Serializer implementation that multiplexes serialization/deserialization requests across multiple Serializer implementations.
    Simple wrapper class to hold decorated info added by the serialization process.
    A factory that produces Serializer instances for a given name.
    Provides the means to create ObjectInput and ObjectOutput streams based on primitive data streams in a layered, pluggable fashion.
    This is the interface represented by the Java OutputStream class.
    This is an imitation DataInputStream class that reads from streams that were produced by a corresponding PackedDataOutputStream.
    This is an imitation DataOutputStream class that packs its data tighter using variable-length integers and supports UTF longer than 64KB.
    The ReadBuffer interface represents an in-memory block of binary data, such as that represented by a byte[], a Binary object, or an NIO buffer.
    The BufferInput interface represents a DataInputStream on top of a ReadBuffer.
    Marker interface for Resolving*Stream implementations.
    Provides an ObjectInputStream that uses a caller provided ClassLoader to resolve classes during objects deserialization.
    A marker implementation to mirror the ResolvingObjectInputStream implementation.
    The SerializationSupport interface provides the ability for objects that are serialized by any Serializer to affect the initial stage of serialization and the final stage of deserialization.
    The Serializer interface provides the capability of reading and writing a Java object from and to an in-memory buffer.
    The SerializerAware interface provides the ability to configure a Serializer to be used by the implementing object when serializing or deserializing objects.
    A factory for Serializer objects.
    Simple implementation of Evolvable interface.
    SizeEstimatingBufferOutput is a WriteBuffer.BufferOutput implementation which writes nothing, and simply maintains an estimated byte count of how much would have been written.
    A Utf8Reader is used to read character data from an underlying stream.
    A Utf8Writer is used to write character data onto an underlying stream.
    This is an imitation BufferInput implementation that provides the BufferInput interface by delegating to an object that implements the DataInput interface.
    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.
    This is an imitation BufferOutput implementation that provides the BufferOutput interface by delegating to an object that implements the DataOutput interface.
    A BufferOutput implementation that in addition to delegating to the given DataOutput provides an API to check whether the recipients of the content of this BufferOutput run versions that supersede (greater or equal to) the specified version.
    This is an imitation DataInputStream class that provides the DataInput interface by delegating to an object that implements the DataInput interface.
    This is an imitation DataOutputStream class that provides the DataOutput interface by delegating to an object that implements the DataOutput interface.
    This is an InputStream class that delegates to another InputStream.
    This is an imitation ObjectInputStream class that provides the ObjectInput interface by delegating to an object that implements the ObjectInput interface.
    This is an imitation ObjectOutputStream class that provides the ObjectOutput interface by delegating to an object that implements the ObjectOutput interface.
    This is an OutputStream class that delegates to another OutputStream.
    Deprecated.
    As of Coherence 3.7, deprecated with no replacement.
    The WriteBuffer interface represents an in-memory block of binary data that is being accumulated (written to).
    The BufferOutput interface represents a DataOutputStream on top of a WriteBuffer.
    Overrides PrintStream to delegate to a PrintWriter.