Uses of Interface
org.egothor.cache.multiQueue.MultiQueueFunction

Packages that use MultiQueueFunction
org.egothor.cache.multiQueue Provides classes that help implementing a cache using MQ algorithm as an eviction policy. 
 

Uses of MultiQueueFunction in org.egothor.cache.multiQueue
 

Methods in org.egothor.cache.multiQueue that return MultiQueueFunction
 MultiQueueFunction MultiQueueCache.queueFunction()
          Gets the class that is used to compute the queue number.
 

Constructors in org.egothor.cache.multiQueue with parameters of type MultiQueueFunction
MultiQueueCache(int capacity, int outCapacity, byte numberOfQueues, MultiQueueFunction queueFunction)
          Constructor for the MultiQueueCache object.
MultiQueueCache(Resolver<K,V> resolver, int capacity, int outCapacity, byte numberOfQueues, MultiQueueFunction queueFunction)
          Constructor for the MultiQueueCache object.