Click or drag to resize

Tangosol.IO Namespace

.NET API Reference for Oracle® Coherence Community Edition
(14.1.1.0)
E55634-01
Contains low-level I/O classes and interfaces.
Classes
  ClassDescription
Public classAbstractEvolvable
An abstract base class for implementing IEvolvable objects.
Public classBinaryDeltaCompressor
An IDeltaCompressor implementation that works with opaque (binary) values.
Public classBinarySerializer
ISerializer implementation that uses .NET binary serializer.
Public classConfigurableSerializerFactory
A ISerializerFactory implementation that creates instances of a Serializer class configured using an XmlElement of the following structure:
              <!ELEMENT instance ((class-name | (class-factory-name, method-name), init-params?)>
              <!ELEMENT init-params (init-param*)>
              <!ELEMENT init-param ((param-name | param-type), param-value, description?)>
            
Public classDataReader
BinaryReader extension that adds methods for reading 32 and 64-bit integer values in a packed format.
Public classDataWriter
BinaryWriter extension that adds methods for writing 32 and 64-bit integer values in a packed format.
Public classIndentingWriter
An IndentingWriter is used to indent line-based output to an underlying TextWriter.
Public classOptimizedBinarySerializer
ISerializer implementation that optimizes serialization of primitive types and falls back to .NET BinaryFormatter for custom types.
Public classSimpleEvolvable
Simple implementation of IEvolvable interface.
Interfaces
  InterfaceDescription
Public interfaceIDeltaCompressor
The IDeltaCompressor 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.
Public interfaceIEvolvable
The IEvolvable interface is implemented by types that require forwards- and backwards-compatibility of their serialized form.
Public interfaceISerializer
Provides the capability of reading and writing a .NET object from and to an in-memory buffer.
Public interfaceISerializerFactory
A factory for ISerializer objects.
Public interfaceIWrapperStreamFactory Obsolete.
Provides the means to wrap a Stream, such that functionality such as compression and encryption can be implemented in a layered, pluggable fashion.