Generated by
JDiff

org.infinispan Documentation Differences

This file contains all the changes in documentation in the package org.infinispan as colored differences. Deletions are shown like this, and additions are shown like this.
If no deletions or additions are shown in an entry, the HTML tags will be what has changed. The new HTML tags are shown in the differences. If no documentation existed, and then some was added in a later version, this change is noted in the appropriate class pages of differences, but the change is not shown on this page. Only changes in existing text are shown here. Similarly, documentation which was inherited from another class or interface is not shown here.
Note that an HTML error in the new documentation may cause the display of other documentation changes to be presented incorrectly. For instance, failure to close a <code> tag will cause all subsequent paragraphs to be displayed differently.

Class AbstractDelegatingAdvancedCache

Similar to org.infinispan.AbstractDelegatingCache, but for AdvancedCache. @author Mircea.Markus@jboss.com @author Tristan Tarrant @see org.infinispan.AbstractDelegatingCacheAbstractDelegatingCache @private

Class AbstractDelegatingCache

This is a convenient base class for implementing a cache delegate. The only constructor takes a Cache argument, to which each method call is delegated. One can extend this class and override the method sub-set it is interested in. There is also an similar implementation for org.infinispan.AdvancedCache: org.infinispan.AbstractDelegatingAdvancedCache. @author Mircea.Markus@jboss.com @see org.infinispan.AbstractDelegatingAdvancedCacheAbstractDelegatingAdvancedCache @private

Class AdvancedCache

An advanced interface that exposes additional methods not available on Cache. @author Manik Surtani @author Galder Zamarreño @author Tristan Tarrant @since 4.0

Class CacheImpl

@author Mircea.Markus@jboss.com @author Galder Zamarreño @author Sanne Grinovero @author Trustin Lee @since 4.00 @private
Class CacheImpl, String getVersion()

Returns the cache configurationversion of as XML stringInfinispan.

Class CacheSupport

@author Mircea.Markus@jboss.com @since 4.11 @private

Class DecoratedCache

A decorator to a cache, which can be built with a specific ClassLoader and a set of Flags. This ClassLoader and set of Flags will be applied to all cache invocations made via this decorator.

In addition to cleaner and more readable code, this approach offers a performance benefit to using AdvancedCache.with(ClassLoader) or AdvancedCache.withFlags(org.infinispan.context.Flag...) APIs, thanks to internal optimizations that can be made when the ClassLoader and Flag set is unchanging. @author Manik Surtani @author Sanne Grinovero @author Tristan Tarrant @see AdvancedCache#with(ClassLoader) @see AdvancedCache#withFlags(org.infinispan.context.Flag...) @since 5.11 @private