Interface CacheEntryStoreHandler<K,V>

Type Parameters:
K - the key type.
V - the value type.

public interface CacheEntryStoreHandler<K,V>
Callback that writes the provided object to a backing store.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    store(K key, V value)
    Callback that writes the provided object to a backing store.
  • Method Details

    • store

      void store(K key, V value)
      Callback that writes the provided object to a backing store.
      Parameters:
      key - the key.
      value - the value.