Additional Inherited Members |
| | AbstractMap () |
| | AbstractMap (const Map< K, V > &map) |
| | AbstractMap (const AbstractMap< K, V > &map) |
| virtual | ~AbstractMap () |
| virtual void | lock () |
| | Locks the object.
|
| virtual bool | tryLock () |
| | Attempts to Lock the object, if the lock is already held by another thread than this method returns false.
|
| virtual void | unlock () |
| | Unlocks the object.
|
| virtual void | wait () |
| | Waits on a signal from this object, which is generated by a call to Notify.
|
| virtual void | wait (long long millisecs) |
| | Waits on a signal from this object, which is generated by a call to Notify.
|
| virtual void | wait (long long millisecs, int nanos) |
| | Waits on a signal from this object, which is generated by a call to Notify.
|
| virtual void | notify () |
| | Signals a waiter on this object that it can now wake up and continue.
|
| virtual void | notifyAll () |
| | Signals the waiters on this object that it can now wake up and continue.
|
template<typename K, typename V, typename COMPARATOR = std::less<K>>
class decaf::util::LRUCache< K, V, COMPARATOR >
A Basic Least Recently Used (LRU) Cache Map.
- Since
- 1.0