Package | Description |
---|---|
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.commands |
Commands that operate on the cache, either locally or remotely.
|
org.infinispan.commands.write |
Commands that alter the state of the cache.
|
org.infinispan.container |
Data containers which store cache entries.
|
org.infinispan.container.entries |
Entries which are stored in data containers.
|
Modifier and Type | Method and Description |
---|---|
void |
AbstractDelegatingAdvancedCache.applyDelta(K deltaAwareValueKey,
Delta delta,
Object... locksToAcquire) |
void |
CacheImpl.applyDelta(K deltaAwareValueKey,
Delta delta,
Object... locksToAcquire) |
void |
AdvancedCache.applyDelta(K deltaAwareValueKey,
Delta delta,
Object... locksToAcquire)
Applies the given Delta to the DeltaAware object stored under deltaAwareValueKey if and only if all
locksToAcquire locks are successfully obtained
|
Modifier and Type | Class and Description |
---|---|
class |
AtomicHashMapDelta
Changes that have occurred on an AtomicHashMap
|
class |
NullDelta
Represents no changes.
|
Modifier and Type | Method and Description |
---|---|
Delta |
AtomicHashMap.delta() |
Delta |
DeltaAware.delta()
Extracts changes made to implementations, in an efficient format that can easily and cheaply be serialized and
deserialized.
|
Modifier and Type | Method and Description |
---|---|
ApplyDeltaCommand |
CommandsFactoryImpl.buildApplyDeltaCommand(Object deltaAwareValueKey,
Delta delta,
Collection keys) |
ApplyDeltaCommand |
CommandsFactory.buildApplyDeltaCommand(Object deltaAwareValueKey,
Delta delta,
Collection keys)
Builds a ApplyDeltaCommand used for applying Delta objects to DeltaAware containers stored in cache
|
Modifier and Type | Method and Description |
---|---|
Delta |
ApplyDeltaCommand.getDelta() |
Constructor and Description |
---|
ApplyDeltaCommand(Object deltaAwareValueKey,
Delta delta,
Collection<Object> keys) |
Modifier and Type | Method and Description |
---|---|
CacheEntry |
EntryFactoryImpl.wrapEntryForDelta(InvocationContext ctx,
Object deltaKey,
Delta delta) |
CacheEntry |
EntryFactory.wrapEntryForDelta(InvocationContext ctx,
Object deltaKey,
Delta delta)
Used for wrapping Delta entry to be applied to DeltaAware object stored in cache.
|
Modifier and Type | Field and Description |
---|---|
protected List<Delta> |
DeltaAwareCacheEntry.deltas |
Modifier and Type | Method and Description |
---|---|
void |
DeltaAwareCacheEntry.appendDelta(Delta d) |
Copyright © 2014 JBoss, a division of Red Hat. All Rights Reserved.