Interface ICache<KEYTYPE,​VALUETYPE>

    • Method Detail

      • getFromCache

        VALUETYPE getFromCache​(KEYTYPE aKey)
        Get the cached value associated with the passed key. If the value is not in the cache, it might be automatically retrieved from a respective provider.
        Parameters:
        aKey - The key to be looked up. May be nullable or not - depends upon the implementation.
        Returns:
        null if no such value is in the cache.