|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use EntryProcessor | |
---|---|
com.hazelcast.client.proxy | This package contains client side proxy implementations of the different Hazelcast data structures and operation types |
com.hazelcast.core | Provides core API interfaces/classes. |
com.hazelcast.map | Contains Hazelcast map module classes. |
com.hazelcast.map.impl.client | Contains client requests for the IMap |
com.hazelcast.map.impl.operation | Package for map operations. |
com.hazelcast.map.impl.proxy | Contains map proxy implementation and support classes. |
com.hazelcast.web | Provides Hazelcast-based session replication. |
Uses of EntryProcessor in com.hazelcast.client.proxy |
---|
Methods in com.hazelcast.client.proxy with parameters of type EntryProcessor | |
---|---|
Map<K,Object> |
ClientMapProxy.executeOnEntries(EntryProcessor entryProcessor)
|
Map<K,Object> |
ClientMapProxy.executeOnEntries(EntryProcessor entryProcessor,
Predicate predicate)
|
Object |
ClientMapProxy.executeOnKey(K key,
EntryProcessor entryProcessor)
|
Map<K,Object> |
ClientMapProxy.executeOnKeys(Set<K> keys,
EntryProcessor entryProcessor)
|
Future |
ClientMapProxy.submitToKey(K key,
EntryProcessor entryProcessor)
|
void |
ClientMapProxy.submitToKey(K key,
EntryProcessor entryProcessor,
ExecutionCallback callback)
|
Uses of EntryProcessor in com.hazelcast.core |
---|
Methods in com.hazelcast.core with parameters of type EntryProcessor | |
---|---|
Map<K,Object> |
IMap.executeOnEntries(EntryProcessor entryProcessor)
Applies the user defined EntryProcessor to the all entries in the map. |
Map<K,Object> |
IMap.executeOnEntries(EntryProcessor entryProcessor,
Predicate predicate)
Applies the user defined EntryProcessor to the entries in the map which satisfies provided predicate. |
Object |
IMap.executeOnKey(K key,
EntryProcessor entryProcessor)
Applies the user defined EntryProcessor to the entry mapped by the key. |
Map<K,Object> |
IMap.executeOnKeys(Set<K> keys,
EntryProcessor entryProcessor)
Applies the user defined EntryProcessor to the entries mapped by the collection of keys. |
Future |
IMap.submitToKey(K key,
EntryProcessor entryProcessor)
Applies the user defined EntryProcessor to the entry mapped by the key. |
void |
IMap.submitToKey(K key,
EntryProcessor entryProcessor,
ExecutionCallback callback)
Applies the user defined EntryProcessor to the entry mapped by the key with specified ExecutionCallback to listen event status and returns immediately. |
Uses of EntryProcessor in com.hazelcast.map |
---|
Classes in com.hazelcast.map that implement EntryProcessor | |
---|---|
class |
AbstractEntryProcessor<K,V>
An abstract EntryProcessor that already has implemented the AbstractEntryProcessor.getBackupProcessor() . |
Uses of EntryProcessor in com.hazelcast.map.impl.client |
---|
Constructors in com.hazelcast.map.impl.client with parameters of type EntryProcessor | |
---|---|
MapExecuteOnAllKeysRequest(String name,
EntryProcessor processor)
|
|
MapExecuteOnKeyRequest(String name,
EntryProcessor processor,
Data key)
|
|
MapExecuteOnKeysRequest(String name,
EntryProcessor processor,
Set<Data> keys)
|
|
MapExecuteWithPredicateRequest(String name,
EntryProcessor processor,
Predicate predicate)
|
Uses of EntryProcessor in com.hazelcast.map.impl.operation |
---|
Constructors in com.hazelcast.map.impl.operation with parameters of type EntryProcessor | |
---|---|
EntryOperation(String name,
Data dataKey,
EntryProcessor entryProcessor)
|
|
MultipleEntryOperation(String name,
Set<Data> keys,
EntryProcessor entryProcessor)
|
|
MultipleEntryOperationFactory(String name,
Set<Data> keys,
EntryProcessor entryProcessor)
|
|
PartitionWideEntryOperation(String name,
EntryProcessor entryProcessor)
|
|
PartitionWideEntryOperationFactory(String name,
EntryProcessor entryProcessor)
|
|
PartitionWideEntryWithPredicateOperation(String name,
EntryProcessor entryProcessor,
Predicate predicate)
|
|
PartitionWideEntryWithPredicateOperationFactory(String name,
EntryProcessor entryProcessor,
Predicate predicate)
|
Uses of EntryProcessor in com.hazelcast.map.impl.proxy |
---|
Methods in com.hazelcast.map.impl.proxy with parameters of type EntryProcessor | |
---|---|
Object |
MapProxyImpl.executeOnKey(K key,
EntryProcessor entryProcessor)
|
Map<K,Object> |
MapProxyImpl.executeOnKeys(Set<K> keys,
EntryProcessor entryProcessor)
|
ICompletableFuture |
MapProxyImpl.submitToKey(K key,
EntryProcessor entryProcessor)
|
void |
MapProxyImpl.submitToKey(K key,
EntryProcessor entryProcessor,
ExecutionCallback callback)
|
Uses of EntryProcessor in com.hazelcast.web |
---|
Classes in com.hazelcast.web that implement EntryProcessor | |
---|---|
class |
AbstractWebDataEntryProcessor<T>
A base class for EntryProcessor s which will use the web data serializer . |
class |
AddSessionEntryProcessor
Sets the initial reference count to 1. |
class |
DestroySessionEntryProcessor
Decrements the reference count for a session, returning Boolean.TRUE or Boolean.FALSE to
indicate whether the reference count has reached zero. |
class |
InvalidateSessionAttributesEntryProcessor
Invalidates all attributes for a destroyed session, removing them
from the clustered map. |
class |
ReferenceSessionEntryProcessor
Increments the reference count, returning Boolean.FALSE if the entry does not exist and
Boolean.TRUE otherwise. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |