Uses of Interface
tuwien.auto.calimero.buffer.cache.Cache

Packages that use Cache
tuwien.auto.calimero.buffer Support for temporary storage of KNX network messages. 
tuwien.auto.calimero.buffer.cache Cache interface for different caching policies. 
 

Uses of Cache in tuwien.auto.calimero.buffer
 

Methods in tuwien.auto.calimero.buffer that return Cache
 Cache Configuration.getCache()
          Returns the currently used cache object or null, if no cache was set.
 

Methods in tuwien.auto.calimero.buffer with parameters of type Cache
 void Configuration.setCache(Cache c)
          Sets the cache to be used in this configuration for buffering KNX messages.
 

Uses of Cache in tuwien.auto.calimero.buffer.cache
 

Classes in tuwien.auto.calimero.buffer.cache that implement Cache
 class ExpiringCache
          Implements a cache expiring mechanism for CacheObjects.
 class LFUCache
          A Cache using a LFU replacement policy.
 class PositiveListCache
          A static Cache using a positive list with allowed keys for the cache.
 

Constructors in tuwien.auto.calimero.buffer.cache with parameters of type Cache
CacheSweeper(Cache cache, int sweepInterval)
          Creates a CacheSweeper for cache with the given sweepInterval.