spring集成`rotatingserveradvice`polling

hk8txs48  于 2021-07-14  发布在  Java
关注(0)|答案(1)|浏览(351)

什么时候 RotatingServerAdvice 作为建议添加到 Poller ,如

PollerSpec pollerSpec = Pollers.cron(cronExpression)
                                       .advice(rotatingServerAdvice(sftpConfig, proxyConfig))
                                       .maxMessagesPerPoll(3)
                                       .errorChannel("errorChannel");

轮询器会在每个位置旋转吗 RotationPolicy.KeyDirectory 在预定的时间,还是每次轮询都检查一个目录?我已经查看了springintegrationgithubrepo和参考文档中的示例,但是我还没有弄清楚这一点。我猜这应该是第一次,但我想确认一下。

jhiyze9q

jhiyze9q1#

请澄清一下,为什么你认为投票和预定时间有区别?只有调度程序来执行任务时,轮询才会真正发生。
有一个 fair 选项供您考虑。见文件:https://docs.spring.io/spring-integration/docs/current/reference/html/ftp.html#ftp-轮换服务器建议

相关问题