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 91aa17b commit 7a775cfCopy full SHA for 7a775cf
spring-batch-docs/asciidoc/spring-batch-integration.adoc
@@ -315,7 +315,7 @@ public IntegrationFlow integrationFlow(JobLaunchingGateway jobLaunchingGateway)
315
return IntegrationFlows.from(Files.inboundAdapter(new File("/tmp/myfiles")).
316
filter(new SimplePatternFileListFilter("*.csv")),
317
c -> c.poller(Pollers.fixedRate(1000).maxMessagesPerPoll(1))).
318
- handle(fileMessageToJobRequest()).
+ transform(fileMessageToJobRequest()).
319
handle(jobLaunchingGateway).
320
log(LoggingHandler.Level.WARN, "headers.id + ': ' + payload").
321
get();
0 commit comments