org.egothor.cache
Interface Resolver<K,V>

Type Parameters:
K - type of the key
V - type of the value
All Known Implementing Classes:
CachedRider, Group, NullResolver, Tanker, TankerImpl, TankerImplDuplicityChecker, TankerImplSecure

public interface Resolver<K,V>

Represents an interface that every class, that is capable of resolving keys to values without a cache, should implement.


Method Summary
 V resolve(K key)
          Gets the value associated with the key without the use of a cache.
 

Method Detail

resolve

V resolve(K key)
Gets the value associated with the key without the use of a cache.

Parameters:
key - key to get the value for
Returns:
value associated with the key