Interface ConcurrentLinkedHashMap.Task
- All Superinterfaces:
Runnable
- All Known Implementing Classes:
ConcurrentLinkedHashMap.AbstractTask
,ConcurrentLinkedHashMap.AddTask
,ConcurrentLinkedHashMap.ReadTask
,ConcurrentLinkedHashMap.RemovalTask
,ConcurrentLinkedHashMap.UpdateTask
- Enclosing class:
ConcurrentLinkedHashMap<K,
V>
An operation that can be lazily applied to the page replacement policy.
-
Method Details
-
getOrder
int getOrder()The priority order. -
isWrite
boolean isWrite()If the task represents an add, modify, or remove operation. -
getNext
ConcurrentLinkedHashMap.Task getNext()Returns the next task on the link chain. -
setNext
Sets the next task on the link chain.
-