Interface IChunkedCacheManager

All Known Implementing Classes:
MockChunkedCacheManager

public interface IChunkedCacheManager
  • Field Details

  • Method Details

    • addCache

      void addCache(String key)
      Add a new key to the cache map
      Parameters:
      key -
    • removeCache

      void removeCache(String key)
      Remove key from the cache map
      Parameters:
      key -
    • hasCache

      boolean hasCache(String key)
      Check that if there is a cache for the specific key
      Parameters:
      key -
      Returns:
    • append

      void append(String key, byte[] data)
      Add new data to the cache for the specific key
      Parameters:
      key -
      data -
    • registerChunkListener

      void registerChunkListener(String key, ICMAFChunkListener icmafChunkListener)
      Parameters:
      key -
      icmafChunkListener -
    • removeChunkListener

      void removeChunkListener(String key, ICMAFChunkListener icmafChunkListener)