Package com.tangosol.util
Class SegmentedConcurrentMap.TruncateAction
java.lang.Object
com.tangosol.util.SegmentedHashMap.EntryActionAdapter
com.tangosol.util.SegmentedConcurrentMap.TruncateAction
- All Implemented Interfaces:
 SegmentedHashMap.EntryAction,SegmentedHashMap.IterableEntryAction
- Enclosing class:
 SegmentedConcurrentMap
Action support for truncate() for a NearCache key/events control map.
 This operation supports interrupting 
lock holder thread and unlocking SegmentedConcurrentMap.LockableEntry entryCur.- Since:
 - 12.2.1.4.21
 
- 
Constructor Summary
Constructors - 
Method Summary
Modifier and TypeMethodDescriptioninvokeFound(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(Object oKey, Object oContext, SegmentedHashMap.Entry[] aeBucket, int nBucket) Invoke some action, holding the segment lock, when no matching Entry is found.Methods inherited from class com.tangosol.util.SegmentedHashMap.EntryActionAdapter
isComplete 
- 
Constructor Details
- 
TruncateAction
protected TruncateAction() 
 - 
 - 
Method Details
- 
invokeFound
public Object invokeFound(Object oKey, Object oContext, SegmentedHashMap.Entry[] aeBucket, int nBucket, SegmentedHashMap.Entry entryPrev, SegmentedHashMap.Entry entryCur) Description copied from class:SegmentedHashMap.EntryActionAdapterInvoke some action, holding the segment lock, when a matching Entry is found.- Specified by:
 invokeFoundin interfaceSegmentedHashMap.EntryAction- Overrides:
 invokeFoundin classSegmentedHashMap.EntryActionAdapter- Parameters:
 oKey- 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- Returns:
 - an opaque result value
 
 - 
invokeNotFound
public Object invokeNotFound(Object oKey, Object oContext, SegmentedHashMap.Entry[] aeBucket, int nBucket) Description copied from class:SegmentedHashMap.EntryActionAdapterInvoke some action, holding the segment lock, when no matching Entry is found.- Specified by:
 invokeNotFoundin interfaceSegmentedHashMap.EntryAction- Overrides:
 invokeNotFoundin classSegmentedHashMap.EntryActionAdapter- Parameters:
 oKey- the key to which the action is appliedoContext- opaque context specific to the actionaeBucket- the bucket arraynBucket- the index into the bucket array- Returns:
 - an opaque result value
 
 
 -