protected class SegmentedConcurrentMap.RemoveAction extends SegmentedHashMap.RemoveAction
The context object for a RemoveAction is unused.
The result of invoking a RemoveAction is the previous value associated with the specified key, or NO_VALUE if no mapping for the key exists in the map. Note that a synthetic Entry does not represent a key-value mapping, so NO_VALUE is returned if a matching synthetic Entry is found.
| Modifier | Constructor and Description | 
|---|---|
| protected | RemoveAction() | 
| Modifier and Type | Method and Description | 
|---|---|
| Object | invokeFound(Object oKey, Object oContext, SegmentedHashMap.Entry[] aeBucket, int nBucket, SegmentedHashMap.Entry entryPrev, SegmentedHashMap.Entry entryCur)Invoke some action, holding the segment lock, when a matching Entry is found. | 
invokeNotFound, isCompletepublic Object invokeFound(Object oKey, Object oContext, SegmentedHashMap.Entry[] aeBucket, int nBucket, SegmentedHashMap.Entry entryPrev, SegmentedHashMap.Entry entryCur)
invokeFound in interface SegmentedHashMap.EntryActioninvokeFound in class SegmentedHashMap.RemoveActionoKey - the key to which the action is appliedoContext - opaque context specific to the actionaeBucket - the bucket arraynBucket - the index into the bucket arrayentryPrev - the Entry object immediately preceding the Entry that was found, or nullentryCur - the Entry object that was found