We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 771bb5d commit fe222d3Copy full SHA for fe222d3
spring-batch-docs/asciidoc/spring-batch-integration.adoc
@@ -323,7 +323,7 @@ public IntegrationFlow integrationFlow(JobLaunchingGateway jobLaunchingGateway)
323
return IntegrationFlows.from(Files.inboundAdapter(new File("/tmp/myfiles")).
324
filter(new SimplePatternFileListFilter("*.csv")),
325
c -> c.poller(Pollers.fixedRate(1000).maxMessagesPerPoll(1))).
326
- handle(fileMessageToJobRequest()).
+ transform(fileMessageToJobRequest()).
327
handle(jobLaunchingGateway).
328
log(LoggingHandler.Level.WARN, "headers.id + ': ' + payload").
329
get();
0 commit comments