|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use org.infinispan.marshall | |
---|---|
org.infinispan | This is the core of Infinispan, a distributed, transactional, highly scalable data grid platform. |
org.infinispan.atomic | This package contains the AtomicMap interfaces and API that Infinispan exposes as building
blocks in creating other public interfaces such as the Tree API. |
org.infinispan.client.hotrod | |
org.infinispan.client.hotrod.impl | |
org.infinispan.client.hotrod.marshall | |
org.infinispan.config | Cache configuration beans and parsers. |
org.infinispan.container.entries | Entries which are stored in data containers. |
org.infinispan.distribution.ch | |
org.infinispan.interceptors | Infinispan is designed around a set of interceptors around a data container. |
org.infinispan.loaders | This package contains loaders and stores, which are used for overflow or persistence. |
org.infinispan.loaders.bdbje | This package contains a CacheStore implementation based on
Oracle's BDBJE storage engine. |
org.infinispan.loaders.bucket | Abstract classes that use hashed buckets to store entries. |
org.infinispan.loaders.cassandra | This package contains a CacheStore implementation based on
persisting to Apache Cassandra |
org.infinispan.loaders.cloud | This package contains a CacheStore implementation based on
JClouds, which in turn is an abstraction layer to store data on cloud infrastructure providers
such as Amazon's S3,
RackspaceCloud's CloudFiles,
Microsoft's Windows Azure Blob Storage API, and others. |
org.infinispan.loaders.cluster | A CacheLoader (not CacheStore ) that polls other nodes in the cluster for state. |
org.infinispan.loaders.decorators | This package contains loaders and stores, which are used for overflow or persistence. |
org.infinispan.loaders.file | Simple filesystem-based CacheStore implementation. |
org.infinispan.loaders.jdbc | This package contains a CacheStore implementation based on
a JDBC database connection. |
org.infinispan.loaders.jdbc.binary | This JDBC CacheStore implementation is optimized for storing binary (non-String) keys in the cache. |
org.infinispan.loaders.jdbc.mixed | This is a delegating CacheStore implementation that delegates either to a binary or String based JDBC cache store depending on the key used. |
org.infinispan.loaders.jdbc.stringbased | This JDBC CacheStore implementation is optimized for storing String keys in the cache. |
org.infinispan.loaders.jdbm | This package contains a CacheStore implementation based on
persisting to JDBM. |
org.infinispan.loaders.remote | |
org.infinispan.marshall | Infinispan makes use of custom marshalling to serialize and deserialize state wherever possible, rather than falling back to the JDK to do this. |
org.infinispan.marshall.exts | Externalizers for various JDK types that are marshalled using the marshalling framework. |
org.infinispan.marshall.jboss | Hooks to bridge Infinispan's marshalling APIs with JBoss Marshalling internals. |
org.infinispan.remoting | Remote communication between cache instances. |
org.infinispan.remoting.responses | Abstractions of the different response types allowed during RPC. |
org.infinispan.remoting.transport | Transports handle the low-level networking, used by the remoting components. |
org.infinispan.remoting.transport.jgroups | A transport implementation based on JGroups. |
org.infinispan.statetransfer | Transfer of state to new caches in a cluster. |
org.infinispan.transaction | JTA transaction support. |
org.infinispan.transaction.xa | XA transaction support. |
org.infinispan.tree | This package contains the TreeCache. |
org.infinispan.util | General utilities that are not specific to Infinispan, including string parsing helpers, reflection tools and collections and containers designed to supplement the JDK-provided containers. |
Classes in org.infinispan.marshall used by org.infinispan | |
---|---|
StreamingMarshaller
A specialization of Marshaller that supports streams. |
Classes in org.infinispan.marshall used by org.infinispan.atomic | |
---|---|
Externalizer
One of the key aspects of Infinispan is that it often needs to marshall/unmarshall objects in order to provide some of its functionality. |
|
Marshalls
Once the Externalizer implementations have been build, it's time to link them up together
with the type classes that they externalize and you do so annotating the Externalizer
implementations with Marshalls . |
Classes in org.infinispan.marshall used by org.infinispan.client.hotrod | |
---|---|
Marshaller
A marshaller is a class that is able to marshall and unmarshall objects efficiently. |
Classes in org.infinispan.marshall used by org.infinispan.client.hotrod.impl | |
---|---|
Marshaller
A marshaller is a class that is able to marshall and unmarshall objects efficiently. |
Classes in org.infinispan.marshall used by org.infinispan.client.hotrod.marshall | |
---|---|
AbstractMarshaller
Abstract Marshaller implementation containing shared implementations. |
|
Marshaller
A marshaller is a class that is able to marshall and unmarshall objects efficiently. |
Classes in org.infinispan.marshall used by org.infinispan.config | |
---|---|
Externalizer
One of the key aspects of Infinispan is that it often needs to marshall/unmarshall objects in order to provide some of its functionality. |
Classes in org.infinispan.marshall used by org.infinispan.container.entries | |
---|---|
Externalizer
One of the key aspects of Infinispan is that it often needs to marshall/unmarshall objects in order to provide some of its functionality. |
|
Marshalls
Once the Externalizer implementations have been build, it's time to link them up together
with the type classes that they externalize and you do so annotating the Externalizer
implementations with Marshalls . |
Classes in org.infinispan.marshall used by org.infinispan.distribution.ch | |
---|---|
Externalizer
One of the key aspects of Infinispan is that it often needs to marshall/unmarshall objects in order to provide some of its functionality. |
|
Marshalls
Once the Externalizer implementations have been build, it's time to link them up together
with the type classes that they externalize and you do so annotating the Externalizer
implementations with Marshalls . |
Classes in org.infinispan.marshall used by org.infinispan.interceptors | |
---|---|
MarshalledValue
Wrapper that wraps cached data, providing lazy deserialization using the calling thread's context class loader. |
|
StreamingMarshaller
A specialization of Marshaller that supports streams. |
Classes in org.infinispan.marshall used by org.infinispan.loaders | |
---|---|
StreamingMarshaller
A specialization of Marshaller that supports streams. |
Classes in org.infinispan.marshall used by org.infinispan.loaders.bdbje | |
---|---|
StreamingMarshaller
A specialization of Marshaller that supports streams. |
Classes in org.infinispan.marshall used by org.infinispan.loaders.bucket | |
---|---|
Externalizer
One of the key aspects of Infinispan is that it often needs to marshall/unmarshall objects in order to provide some of its functionality. |
|
Marshalls
Once the Externalizer implementations have been build, it's time to link them up together
with the type classes that they externalize and you do so annotating the Externalizer
implementations with Marshalls . |
Classes in org.infinispan.marshall used by org.infinispan.loaders.cassandra | |
---|---|
StreamingMarshaller
A specialization of Marshaller that supports streams. |
Classes in org.infinispan.marshall used by org.infinispan.loaders.cloud | |
---|---|
StreamingMarshaller
A specialization of Marshaller that supports streams. |
Classes in org.infinispan.marshall used by org.infinispan.loaders.cluster | |
---|---|
StreamingMarshaller
A specialization of Marshaller that supports streams. |
Classes in org.infinispan.marshall used by org.infinispan.loaders.decorators | |
---|---|
StreamingMarshaller
A specialization of Marshaller that supports streams. |
Classes in org.infinispan.marshall used by org.infinispan.loaders.file | |
---|---|
StreamingMarshaller
A specialization of Marshaller that supports streams. |
Classes in org.infinispan.marshall used by org.infinispan.loaders.jdbc | |
---|---|
StreamingMarshaller
A specialization of Marshaller that supports streams. |
Classes in org.infinispan.marshall used by org.infinispan.loaders.jdbc.binary | |
---|---|
StreamingMarshaller
A specialization of Marshaller that supports streams. |
Classes in org.infinispan.marshall used by org.infinispan.loaders.jdbc.mixed | |
---|---|
StreamingMarshaller
A specialization of Marshaller that supports streams. |
Classes in org.infinispan.marshall used by org.infinispan.loaders.jdbc.stringbased | |
---|---|
StreamingMarshaller
A specialization of Marshaller that supports streams. |
Classes in org.infinispan.marshall used by org.infinispan.loaders.jdbm | |
---|---|
StreamingMarshaller
A specialization of Marshaller that supports streams. |
Classes in org.infinispan.marshall used by org.infinispan.loaders.remote | |
---|---|
StreamingMarshaller
A specialization of Marshaller that supports streams. |
Classes in org.infinispan.marshall used by org.infinispan.marshall | |
---|---|
AbstractMarshaller
Abstract Marshaller implementation containing shared implementations. |
|
AbstractStreamingMarshaller
Abstract marshaller |
|
Externalizer
One of the key aspects of Infinispan is that it often needs to marshall/unmarshall objects in order to provide some of its functionality. |
|
MarshalledValue
Wrapper that wraps cached data, providing lazy deserialization using the calling thread's context class loader. |
|
Marshaller
A marshaller is a class that is able to marshall and unmarshall objects efficiently. |
|
Marshalls
Once the Externalizer implementations have been build, it's time to link them up together
with the type classes that they externalize and you do so annotating the Externalizer
implementations with Marshalls . |
|
StreamingMarshaller
A specialization of Marshaller that supports streams. |
Classes in org.infinispan.marshall used by org.infinispan.marshall.exts | |
---|---|
Externalizer
One of the key aspects of Infinispan is that it often needs to marshall/unmarshall objects in order to provide some of its functionality. |
|
Marshalls
Once the Externalizer implementations have been build, it's time to link them up together
with the type classes that they externalize and you do so annotating the Externalizer
implementations with Marshalls . |
Classes in org.infinispan.marshall used by org.infinispan.marshall.jboss | |
---|---|
AbstractMarshaller
Abstract Marshaller implementation containing shared implementations. |
|
Marshaller
A marshaller is a class that is able to marshall and unmarshall objects efficiently. |
|
StreamingMarshaller
A specialization of Marshaller that supports streams. |
Classes in org.infinispan.marshall used by org.infinispan.remoting | |
---|---|
StreamingMarshaller
A specialization of Marshaller that supports streams. |
Classes in org.infinispan.marshall used by org.infinispan.remoting.responses | |
---|---|
Externalizer
One of the key aspects of Infinispan is that it often needs to marshall/unmarshall objects in order to provide some of its functionality. |
|
Marshalls
Once the Externalizer implementations have been build, it's time to link them up together
with the type classes that they externalize and you do so annotating the Externalizer
implementations with Marshalls . |
Classes in org.infinispan.marshall used by org.infinispan.remoting.transport | |
---|---|
StreamingMarshaller
A specialization of Marshaller that supports streams. |
Classes in org.infinispan.marshall used by org.infinispan.remoting.transport.jgroups | |
---|---|
Externalizer
One of the key aspects of Infinispan is that it often needs to marshall/unmarshall objects in order to provide some of its functionality. |
|
Marshalls
Once the Externalizer implementations have been build, it's time to link them up together
with the type classes that they externalize and you do so annotating the Externalizer
implementations with Marshalls . |
|
StreamingMarshaller
A specialization of Marshaller that supports streams. |
Classes in org.infinispan.marshall used by org.infinispan.statetransfer | |
---|---|
StreamingMarshaller
A specialization of Marshaller that supports streams. |
Classes in org.infinispan.marshall used by org.infinispan.transaction | |
---|---|
Externalizer
One of the key aspects of Infinispan is that it often needs to marshall/unmarshall objects in order to provide some of its functionality. |
|
Marshalls
Once the Externalizer implementations have been build, it's time to link them up together
with the type classes that they externalize and you do so annotating the Externalizer
implementations with Marshalls . |
|
StreamingMarshaller
A specialization of Marshaller that supports streams. |
Classes in org.infinispan.marshall used by org.infinispan.transaction.xa | |
---|---|
Externalizer
One of the key aspects of Infinispan is that it often needs to marshall/unmarshall objects in order to provide some of its functionality. |
|
Marshalls
Once the Externalizer implementations have been build, it's time to link them up together
with the type classes that they externalize and you do so annotating the Externalizer
implementations with Marshalls . |
Classes in org.infinispan.marshall used by org.infinispan.tree | |
---|---|
Externalizer
One of the key aspects of Infinispan is that it often needs to marshall/unmarshall objects in order to provide some of its functionality. |
|
Marshalls
Once the Externalizer implementations have been build, it's time to link them up together
with the type classes that they externalize and you do so annotating the Externalizer
implementations with Marshalls . |
Classes in org.infinispan.marshall used by org.infinispan.util | |
---|---|
Externalizer
One of the key aspects of Infinispan is that it often needs to marshall/unmarshall objects in order to provide some of its functionality. |
|
Marshalls
Once the Externalizer implementations have been build, it's time to link them up together
with the type classes that they externalize and you do so annotating the Externalizer
implementations with Marshalls . |
|
Google Analytics | |||||||||
PREV NEXT | FRAMES NO FRAMES |