| Package | Description |
|---|---|
| org.apache.ignite.cache.store |
Contains cache store interfaces.
|
| org.apache.ignite.cache.store.jdbc |
Contains reference JDBC-based cache store implementation.
|
| org.apache.ignite.internal.managers.swapspace |
TODO.
|
| org.apache.ignite.internal.processors.cache | |
| org.apache.ignite.internal.processors.cache.distributed.near | |
| org.apache.ignite.internal.processors.cache.transactions | |
| org.apache.ignite.internal.util |
System-wide utility routine and helper classes.
|
| org.apache.ignite.internal.util.lang | |
| org.apache.ignite.internal.util.typedef |
Contains typedefs definitions for frequently used classes.
|
| org.apache.ignite.spi.swapspace |
Contains APIs for swap space SPI.
|
| org.apache.ignite.spi.swapspace.file |
Contains file-based swap space SPI.
|
| org.apache.ignite.spi.swapspace.noop |
Contains default no-op swap space SPI implementation.
|
| org.apache.ignite.stream |
Contains Ignite Streamer classes.
|
| Modifier and Type | Method and Description |
|---|---|
void |
CacheStoreAdapter.loadCache(IgniteBiInClosure<K,V> clo,
Object... args)
Default empty implementation.
|
void |
CacheLoadOnlyStoreAdapter.loadCache(IgniteBiInClosure<K,V> c,
Object... args)
Loads all values from underlying persistent storage.
|
void |
CacheStore.loadCache(IgniteBiInClosure<K,V> clo,
Object... args)
Loads all values from underlying persistent storage.
|
| Modifier and Type | Method and Description |
|---|---|
void |
CacheAbstractJdbcStore.loadCache(IgniteBiInClosure<K,V> clo,
Object... args)
Loads all values from underlying persistent storage.
|
| Modifier and Type | Method and Description |
|---|---|
void |
GridSwapSpaceManager.removeAll(String spaceName,
Collection<SwapKey> keys,
IgniteBiInClosure<SwapKey,byte[]> c,
ClassLoader ldr)
Removes value from swap.
|
| Modifier and Type | Method and Description |
|---|---|
void |
GridCacheIoManager.addHandler(int cacheId,
Class<? extends GridCacheMessage> type,
IgniteBiInClosure<UUID,? extends GridCacheMessage> c)
Adds message handler.
|
void |
GridCacheIoManager.addOrderedHandler(Object topic,
IgniteBiInClosure<UUID,? extends GridCacheMessage> c)
Adds ordered message handler.
|
void |
CacheStoreBalancingWrapper.loadAll(Collection<? extends K> keys,
IgniteBiInClosure<K,V> c) |
boolean |
GridCacheStoreManager.loadAllFromStore(IgniteInternalTx tx,
Collection<? extends KeyCacheObject> keys,
IgniteBiInClosure<KeyCacheObject,Object> vis)
Loads data from persistent store.
|
void |
CacheStoreBalancingWrapper.loadCache(IgniteBiInClosure<K,V> clo,
Object... args)
Loads all values from underlying persistent storage.
|
void |
GridCacheWriteBehindStore.loadCache(IgniteBiInClosure<K,V> clo,
Object... args)
Loads all values from underlying persistent storage.
|
IgniteInternalFuture<Object> |
GridCacheAdapter.readThroughAllAsync(Collection<KeyCacheObject> keys,
boolean reload,
boolean skipVals,
IgniteInternalTx tx,
UUID subjId,
String taskName,
IgniteBiInClosure<KeyCacheObject,Object> vis) |
| Modifier and Type | Method and Description |
|---|---|
IgniteInternalFuture<Boolean> |
GridNearTxLocal.loadMissing(GridCacheContext cacheCtx,
boolean readThrough,
boolean async,
Collection<KeyCacheObject> keys,
boolean deserializePortable,
boolean skipVals,
IgniteBiInClosure<KeyCacheObject,Object> c) |
IgniteInternalFuture<Object> |
GridNearCacheAdapter.readThroughAllAsync(Collection<KeyCacheObject> keys,
boolean reload,
boolean skipVals,
IgniteInternalTx tx,
UUID subjId,
String taskName,
IgniteBiInClosure<KeyCacheObject,Object> vis) |
| Modifier and Type | Method and Description |
|---|---|
IgniteInternalFuture<Boolean> |
IgniteTxLocalAdapter.loadMissing(GridCacheContext cacheCtx,
boolean readThrough,
boolean async,
Collection<KeyCacheObject> keys,
boolean deserializePortable,
boolean skipVals,
IgniteBiInClosure<KeyCacheObject,Object> c) |
IgniteInternalFuture<Boolean> |
IgniteTxLocalEx.loadMissing(GridCacheContext cacheCtx,
boolean readThrough,
boolean async,
Collection<KeyCacheObject> keys,
boolean deserializePortable,
boolean skipVals,
IgniteBiInClosure<KeyCacheObject,Object> c) |
| Modifier and Type | Method and Description |
|---|---|
IgniteBiInClosure<K,V> |
GridBoundedConcurrentOrderedMap.evictionListener()
Gets closure listener to be called for every eviction event.
|
| Modifier and Type | Method and Description |
|---|---|
void |
GridBoundedConcurrentOrderedMap.evictionListener(IgniteBiInClosure<K,V> lsnr)
Sets closure listener to be called for every eviction event.
|
| Modifier and Type | Class and Description |
|---|---|
class |
IgniteInClosure2X<E1,E2>
Convenient in-closure subclass that allows for thrown grid exception.
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
CI2<E1,E2>
Defines
alias for IgniteBiInClosure by extending it. |
| Modifier and Type | Class and Description |
|---|---|
class |
CIX2<E1,E2>
Defines
alias for IgniteInClosure2X by extending it. |
| Modifier and Type | Method and Description |
|---|---|
void |
SwapSpaceSpi.removeAll(String spaceName,
Collection<SwapKey> keys,
IgniteBiInClosure<SwapKey,byte[]> c,
SwapContext ctx)
Removes values stored in data space with given name corresponding to specified keys.
|
| Modifier and Type | Method and Description |
|---|---|
void |
FileSwapSpaceSpi.removeAll(String spaceName,
Collection<SwapKey> keys,
IgniteBiInClosure<SwapKey,byte[]> c,
SwapContext ctx)
Removes values stored in data space with given name corresponding to specified keys.
|
| Modifier and Type | Method and Description |
|---|---|
void |
NoopSwapSpaceSpi.removeAll(String spaceName,
Collection<SwapKey> keys,
IgniteBiInClosure<SwapKey,byte[]> c,
SwapContext ctx)
Removes values stored in data space with given name corresponding to specified keys.
|
| Modifier and Type | Class and Description |
|---|---|
class |
StreamVisitor<K,V>
Convenience adapter to visit every key-value tuple in the stream.
|
| Modifier and Type | Method and Description |
|---|---|
static <K,V> StreamVisitor<K,V> |
StreamVisitor.from(IgniteBiInClosure<IgniteCache<K,V>,Map.Entry<K,V>> c)
Creates a new visitor based on instance of
IgniteBiInClosure. |
Follow @ApacheIgnite
Ignite Fabric : ver. 1.0.0 Release Date : March 31 2015