Uses of Interface
org.apache.ignite.cache.CacheEntryProcessor
-
Packages that use CacheEntryProcessor Package Description org.apache.ignite Contains entry-point Ignite & HPC APIs.org.apache.ignite.internal.processors.cache This package contain cache-related processors & persistence implementation.org.apache.ignite.internal.processors.platform.cache org.apache.ignite.internal.processors.platform.entityframework org.apache.ignite.internal.processors.platform.websession org.apache.ignite.stream Contains Ignite Streamer classes. -
-
Uses of CacheEntryProcessor in org.apache.ignite
Methods in org.apache.ignite with parameters of type CacheEntryProcessor Modifier and Type Method Description <T> TIgniteCache. invoke(K key, CacheEntryProcessor<K,V,T> entryProcessor, Object... arguments)Invokes anCacheEntryProcessoragainst theCache.Entryspecified by the provided key.<T> Map<K,javax.cache.processor.EntryProcessorResult<T>>IgniteCache. invokeAll(Set<? extends K> keys, CacheEntryProcessor<K,V,T> entryProcessor, Object... args)Invokes anCacheEntryProcessoragainst the set ofCache.Entrys specified by the set of keys.<T> IgniteFuture<Map<K,javax.cache.processor.EntryProcessorResult<T>>>IgniteCache. invokeAllAsync(Set<? extends K> keys, CacheEntryProcessor<K,V,T> entryProcessor, Object... args)Asynchronously invokes anCacheEntryProcessoragainst the set ofCache.Entrys specified by the set of keys.<T> IgniteFuture<T>IgniteCache. invokeAsync(K key, CacheEntryProcessor<K,V,T> entryProcessor, Object... arguments)Asynchronously invokes anCacheEntryProcessoragainst theCache.Entryspecified by the provided key. -
Uses of CacheEntryProcessor in org.apache.ignite.internal.processors.cache
Classes in org.apache.ignite.internal.processors.cache that implement CacheEntryProcessor Modifier and Type Class Description protected static classGridCacheAdapter.AtomicReadRepairEntryProcessor<K,V>Methods in org.apache.ignite.internal.processors.cache with parameters of type CacheEntryProcessor Modifier and Type Method Description <T> TGatewayProtectedCacheProxy. invoke(K key, CacheEntryProcessor<K,V,T> entryProcessor, Object... arguments)Invokes anCacheEntryProcessoragainst theCache.Entryspecified by the provided key.<T> TIgniteCacheProxyImpl. invoke(K key, CacheEntryProcessor<K,V,T> entryProcessor, Object... args)Invokes anCacheEntryProcessoragainst theCache.Entryspecified by the provided key.<T> Map<K,javax.cache.processor.EntryProcessorResult<T>>GatewayProtectedCacheProxy. invokeAll(Set<? extends K> keys, CacheEntryProcessor<K,V,T> entryProcessor, Object... args)Invokes anCacheEntryProcessoragainst the set ofCache.Entrys specified by the set of keys.<T> Map<K,javax.cache.processor.EntryProcessorResult<T>>IgniteCacheProxyImpl. invokeAll(Set<? extends K> keys, CacheEntryProcessor<K,V,T> entryProcessor, Object... args)Invokes anCacheEntryProcessoragainst the set ofCache.Entrys specified by the set of keys.<T> IgniteFuture<Map<K,javax.cache.processor.EntryProcessorResult<T>>>GatewayProtectedCacheProxy. invokeAllAsync(Set<? extends K> keys, CacheEntryProcessor<K,V,T> entryProcessor, Object... args)Asynchronously invokes anCacheEntryProcessoragainst the set ofCache.Entrys specified by the set of keys.<T> IgniteFuture<Map<K,javax.cache.processor.EntryProcessorResult<T>>>IgniteCacheProxyImpl. invokeAllAsync(Set<? extends K> keys, CacheEntryProcessor<K,V,T> entryProcessor, Object... args)Asynchronously invokes anCacheEntryProcessoragainst the set ofCache.Entrys specified by the set of keys.<T> IgniteFuture<T>GatewayProtectedCacheProxy. invokeAsync(K key, CacheEntryProcessor<K,V,T> entryProcessor, Object... arguments)Asynchronously invokes anCacheEntryProcessoragainst theCache.Entryspecified by the provided key.<T> IgniteFuture<T>IgniteCacheProxyImpl. invokeAsync(K key, CacheEntryProcessor<K,V,T> entryProcessor, Object... args)Asynchronously invokes anCacheEntryProcessoragainst theCache.Entryspecified by the provided key. -
Uses of CacheEntryProcessor in org.apache.ignite.internal.processors.platform.cache
Subinterfaces of CacheEntryProcessor in org.apache.ignite.internal.processors.platform.cache Modifier and Type Interface Description interfacePlatformCacheEntryProcessorPlatform cache entry processor marker interface.Classes in org.apache.ignite.internal.processors.platform.cache that implement CacheEntryProcessor Modifier and Type Class Description classPlatformCacheEntryProcessorImplPlatform cache entry processor. -
Uses of CacheEntryProcessor in org.apache.ignite.internal.processors.platform.entityframework
Classes in org.apache.ignite.internal.processors.platform.entityframework that implement CacheEntryProcessor Modifier and Type Class Description classPlatformDotNetEntityFrameworkIncreaseVersionProcessorEntry processor that increments entity set version number. -
Uses of CacheEntryProcessor in org.apache.ignite.internal.processors.platform.websession
Classes in org.apache.ignite.internal.processors.platform.websession that implement CacheEntryProcessor Modifier and Type Class Description classPlatformDotNetSessionLockProcessorEntry processor that locks web session data.classPlatformDotNetSessionSetAndUnlockProcessorProcessor to unlock and optionally update the session. -
Uses of CacheEntryProcessor in org.apache.ignite.stream
Methods in org.apache.ignite.stream with parameters of type CacheEntryProcessor Modifier and Type Method Description static <K,V>
StreamTransformer<K,V>StreamTransformer. from(CacheEntryProcessor<K,V,Object> ep)Creates a new transformer based on instance ofCacheEntryProcessor.
-