Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Pollers.fixedDelay(5000)spring integration和Pollers.fixedRate(5000) in spring integration和有什么区别Pollers?
Pollers.fixedDelay(5000)
Pollers.fixedRate(5000)
Pollers
固定利率和固定延迟之间存在显着差异。使用固定利率,无论上一次执行花费了多长时间,下一次执行都会在计划好的时候发生。使用固定延迟,下一次执行总是在上一次完成后 x 次发生,即使它被延迟了。
更多信息在这里