private static class FastFindCache.ReverseLookup.Node
extends java.lang.Object
Value object.| Modifier and Type | Field and Description |
|---|---|
private FastFindCache.L2Key |
l2Key
Key associated with an L3 cached result
|
private java.lang.ref.WeakReference<Cache<FastFindCache.L2Key,RecordIdentifier<java.lang.String>>> |
l3Cache
L3 cache containing the cached result which may require invalidation
|
private FastFindCache.ReverseLookup.Node |
next
The next node in a linked list, if any
|
| Constructor and Description |
|---|
Node(Cache<FastFindCache.L2Key,RecordIdentifier<java.lang.String>> l3Cache,
FastFindCache.L2Key l2Key)
Constructor.
|
private final java.lang.ref.WeakReference<Cache<FastFindCache.L2Key,RecordIdentifier<java.lang.String>>> l3Cache
private final FastFindCache.L2Key l2Key
private FastFindCache.ReverseLookup.Node next
Node(Cache<FastFindCache.L2Key,RecordIdentifier<java.lang.String>> l3Cache, FastFindCache.L2Key l2Key)
l3Cache - L3 cache containing the cached result which may require invalidation.l2Key - Key associated with an L3 cached result.