Interface DeploymentCache<T>

All Known Implementing Classes:
DefaultDeploymentCache, FullDeploymentCache, ProcessDefinitionInfoCache

public interface DeploymentCache<T>
Interface for cache implementations.
Author:
Joram Barrez
  • Method Details

    • get

      T get(String id)
    • contains

      boolean contains(String id)
    • add

      void add(String id, T object)
    • remove

      void remove(String id)
    • clear

      void clear()
    • getAll

      Collection<T> getAll()
    • size

      int size()