Package | Description |
---|---|
com.hazelcast.replicatedmap.impl.operation |
This package contains replicated map operations which are executed on remote nodes
|
com.hazelcast.replicatedmap.impl.record |
This package contains the implementation of the backing data storage for the replicated map implementation
|
com.hazelcast.replicatedmap.merge |
Contains out-of-the-box merge policies for
ReplicatedMap . |
Constructor and Description |
---|
LegacyMergeOperation(String name,
Object key,
ReplicatedMapEntryView entryView,
ReplicatedMapMergePolicy policy) |
Modifier and Type | Method and Description |
---|---|
boolean |
AbstractReplicatedRecordStore.merge(Object key,
ReplicatedMapEntryView mergingEntry,
ReplicatedMapMergePolicy mergePolicy) |
boolean |
ReplicatedRecordStore.merge(Object key,
ReplicatedMapEntryView entryView,
ReplicatedMapMergePolicy mergePolicy)
Merges the given
ReplicatedMapEntryView via the given ReplicatedMapMergePolicy . |
Modifier and Type | Class and Description |
---|---|
class |
HigherHitsMapMergePolicy
Merges replicated map entries from source to destination map if the source entry
has more hits than the destination one.
|
class |
LatestUpdateMapMergePolicy
Merges replicated map entries from source to destination map if the source entry
was updated more recently than the destination entry.
|
class |
PassThroughMergePolicy
Merges replicated map entries from source to destination directly unless the merging entry is
null . |
class |
PutIfAbsentMapMergePolicy
Merges replicated map entries from source to destination if they don't exist in the destination map.
|
Copyright © 2018 Hazelcast, Inc.. All Rights Reserved.