How to use PollerSpec in IntegrationFlowDefinition.bridge() properly with PollerMetadata.DEFAULT_POLLER?
问题 I am building an integration which has one main flow(start), and 2 sub flows. Main start flow is just to get property information, that is needed for both sub flows. After getting property info, it needs to subscribe different sub flows(startFlow1, startFlow2). And these different sub flows have to work in different times. See the example implementation below; @Bean(name = PollerMetadata.DEFAULT_POLLER) public PollerMetadata poller() { return Pollers.fixedRate(300, TimeUnit.SECONDS, 10).get()