企业🤖AI Agent构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
## 一、概述 有时候,有些业务操作,两次针对同一个对象的相同操作需强制指定间隔时间; ## 二、方案 引入: ``` @Autowired private OperationConstrainedExecutor operationConstrainedExecutor; ``` ``` long operateEntityId =1; long periodMinutes =5; if (operationConstrainedExecutor.canExecuteThisRequestConstrainedActionNow(this, operateEntityId , periodMinutes , false)) { //间隔时间业务 } ```