Interface Cache<K,T>


public interface Cache<K,T>
This is Cache interface for virtualan.
Author:
Elan Thangamani
  • Method Summary

    Modifier and Type
    Method
    Description
     
    readById(K id)
     
    void
    remove(K key)
     
    void
    update(K key, T mock)
     
  • Method Details

    • readAll

      Map<K,T> readAll()
    • update

      void update(K key, T mock)
    • remove

      void remove(K key)
    • readById

      T readById(K id)