Flowable源码注释(二十七)部署缓存类
Flowable源码地址:https://github.com/flowable/flowable-engine
Flowable-6.7.2 源码注释地址:https://github.com/solojin/flowable-6.7.2-annotated
包路径:org.flowable.common.engine.impl.persistence.deploy
DeploymentCache 部署缓存接口类
/**
* 缓存实现的接口类。
* 泛型参数
*
* @author Joram Barrez
*/
public interface DeploymentCache
// 根据ID获取缓存实体
T get(String id);
// 根据ID判断是否包含
boolean contains(String id);
// 根据
共有 0 条评论