Class ConcurrentLinkedHashMap.RemovalTask
- java.lang.Object
-
- com.googlecode.concurrentlinkedhashmap.ConcurrentLinkedHashMap.AbstractTask
-
- com.googlecode.concurrentlinkedhashmap.ConcurrentLinkedHashMap.RemovalTask
-
- All Implemented Interfaces:
ConcurrentLinkedHashMap.Task
,java.lang.Runnable
- Enclosing class:
- ConcurrentLinkedHashMap<K,V>
final class ConcurrentLinkedHashMap.RemovalTask extends ConcurrentLinkedHashMap.AbstractTask
Removes a node from the page replacement policy.
-
-
Field Summary
Fields Modifier and Type Field Description (package private) ConcurrentLinkedHashMap.Node
node
-
Fields inherited from class com.googlecode.concurrentlinkedhashmap.ConcurrentLinkedHashMap.AbstractTask
order, task
-
-
Constructor Summary
Constructors Constructor Description RemovalTask(ConcurrentLinkedHashMap.Node node)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
isWrite()
If the task represents an add, modify, or remove operation.void
run()
-
Methods inherited from class com.googlecode.concurrentlinkedhashmap.ConcurrentLinkedHashMap.AbstractTask
getNext, getOrder, setNext
-
-
-
-
Field Detail
-
node
final ConcurrentLinkedHashMap.Node node
-
-
Constructor Detail
-
RemovalTask
RemovalTask(ConcurrentLinkedHashMap.Node node)
-
-
Method Detail
-
run
public void run()
-
isWrite
public boolean isWrite()
Description copied from interface:ConcurrentLinkedHashMap.Task
If the task represents an add, modify, or remove operation.
-
-