Interface SimpleLocalCache<K,V>

Type Parameters:
K -
V -
All Known Implementing Classes:
AuthTokenCacheLocalImpl, SimpleLocalCacheImpl

public interface SimpleLocalCache<K,V>
Author:
Changski Tie Zheng Zhang 张铁铮, 魏泽北, 杜旺财, 杜富贵
  • Method Summary

    Modifier and Type
    Method
    Description
    delete(K key)
     
    get(K key)
     
    void
    put(K key, V value, Long ttlMilliseconds)
     
  • Method Details

    • put

      void put(K key, V value, Long ttlMilliseconds)
    • get

      V get(K key)
    • delete

      V delete(K key)