Uses of Interface
com.tangosol.io.DeltaCompressor
-
Packages that use DeltaCompressor Package Description com.tangosol.coherence.config.xml.processor Defines the Xml document Element and Attribute Processors for Coherence Cache Configuration files.com.tangosol.io Contains classes providing cache persistence of serialized objects.com.tangosol.io.pof Contains classes related to POF serialization and deserialization.com.tangosol.util Contains various generic utilities. -
-
Uses of DeltaCompressor in com.tangosol.coherence.config.xml.processor
Methods in com.tangosol.coherence.config.xml.processor that return DeltaCompressor Modifier and Type Method Description DeltaCompressor
DeltaCompressorProcessor. process(ProcessingContext context, XmlElement xmlElement)
Process anXmlElement
to return a specific type of value. -
Uses of DeltaCompressor in com.tangosol.io
Classes in com.tangosol.io that implement DeltaCompressor Modifier and Type Class Description class
BinaryDeltaCompressor
A DeltaCompressor implementation that works with opaque (binary) values.class
DecoratedBinaryDeltaCompressor
A DeltaCompressor implementation that works with decorated binary values.class
DecorationOnlyDeltaCompressor
DecorationOnlyDeltaCompressor is a DeltaCompressor which optimizes for "decoration-only" updates.Constructors in com.tangosol.io with parameters of type DeltaCompressor Constructor Description DecoratedBinaryDeltaCompressor(DeltaCompressor compressorValue)
Construct a DecoratedBinaryDeltaCompressor. -
Uses of DeltaCompressor in com.tangosol.io.pof
Classes in com.tangosol.io.pof that implement DeltaCompressor Modifier and Type Class Description class
PofDeltaCompressor
A DeltaCompressor implementation that works with Portable Object Format (POF) values. -
Uses of DeltaCompressor in com.tangosol.util
Classes in com.tangosol.util that implement DeltaCompressor Modifier and Type Class Description static class
ExternalizableHelper.FormatAwareCompressor
A DeltaCompressor wrapper implementation that removes/replaces the serialization format byte (FMT_EXT) before/after delegating to the underlying compressor.static class
NullImplementation.NullDeltaCompressor
An implementation of a DeltaCompressor that does nothing and always returns the new stream.Fields in com.tangosol.util declared as DeltaCompressor Modifier and Type Field Description static DeltaCompressor
NullImplementation.NullDeltaCompressor. INSTANCE
Singleton instance.protected DeltaCompressor
ExternalizableHelper.FormatAwareCompressor. m_compressor
The wrapped DeltaCompressor.Methods in com.tangosol.util that return DeltaCompressor Modifier and Type Method Description static DeltaCompressor
ExternalizableHelper. getDeltaCompressor(Serializer serializer, DeltaCompressor compressor)
Return a DeltaCompressor suitable for compressing/extracting binaries produced by ExternalizableHelper using the specified serializer.static DeltaCompressor
NullImplementation. getDeltaCompressor()
Factory method: Obtain a null implementation of a DeltaCompressor.Methods in com.tangosol.util with parameters of type DeltaCompressor Modifier and Type Method Description static DeltaCompressor
ExternalizableHelper. getDeltaCompressor(Serializer serializer, DeltaCompressor compressor)
Return a DeltaCompressor suitable for compressing/extracting binaries produced by ExternalizableHelper using the specified serializer.Constructors in com.tangosol.util with parameters of type DeltaCompressor Constructor Description FormatAwareCompressor(DeltaCompressor compressor)
Construct a FormatAwareCompressor.
-