|
||||||||||
PREV PACKAGE NEXT PACKAGE | FRAMES NO FRAMES |
See:
Description
Interface Summary | |
---|---|
Externalizer<T> | One of the key aspects of Infinispan is that it often needs to marshall/unmarshall objects in order to provide some of its functionality. |
Ids | Indexes for object types. |
Marshaller | A marshaller is a class that is able to marshall and unmarshall objects efficiently. |
StreamingMarshaller | A specialization of Marshaller that supports streams. |
Class Summary | |
---|---|
AbstractExternalizer<T> | Base class for Externalizer implementations that offers default
implementations for some of its methods. |
AbstractMarshaller | Abstract Marshaller implementation containing shared implementations. |
MarshalledValue | Wrapper that wraps cached data, providing lazy deserialization using the calling thread's context class loader. |
MarshalledValue.Externalizer | |
MarshallUtil | MarshallUtil. |
UnmarshalledReferences | An efficient array-based list of referenced objects, using the reference id as a subscript for the array. |
VersionAwareMarshaller | A delegate to various other marshallers like JBossMarshaller . |
Exception Summary | |
---|---|
NotSerializableException | An exception that hides inner stacktrace lines for non serializable exceptions. |
Annotation Types Summary | |
---|---|
Marshalls | Deprecated. This annotation's information is now provided via
corresponding Externalizer method implementations. |
Infinispan makes use of custom marshalling to serialize and deserialize state wherever possible, rather than falling back to the JDK to do this. This package contains the necessary classes for this.
|
--> |