the type of the Map entry key
the type of the Map entry value
Construct a VersionedPutAll processor that updates an entry with a new value if and only if the version of the new value matches to the version of the current entry's value (which must exist). This processor optionally returns a map of entries that have not been updated (the versions did not match).
a map of values to update entries with
specifies whether or not an insert should be allowed (no currently existing value)
specifies whether or not the processor should return the entries that have not been updated
Protected
Readonly
entriesSpecifies the new value to update an entry with.
Protected
Optional
Readonly
insertSpecifies whether or not an insert is allowed.
Protected
Optional
Readonly
returnSpecifies whether or not a return value is required.
Returns a CompositeProcessor comprised of this and the provided processor.
a CompositeProcessor comprised of this and the provided processor
the next processor
Returns a ConditionalProcessor comprised of this processor and the provided filter.
The specified entry processor gets invoked if and only if the filter
applied to the entry evaluates to true
; otherwise the
result of the invocation will return null
.
the filter
VersionedPutAll
is an EntryProcessor that assumes that entry values are versioned (see Coherence Versionable interface for details) and performs an update/insert operation only for entries whose versions match to versions of the corresponding current values. In case of the match, theVersionedPutAll
will increment the version indicator before each value is updated.