Reputation: 11
Could you please provide an example using spring integration java dsl for the following scenario: On receipt of customer id by a topic consumer:
I also wanted to check if Mark Fisher is publishing spring integration in action with java dsl.
Upvotes: 1
Views: 953
Reputation: 121177
Nothing more then transform()
in Java DSL.
& 3. Perhaps you can use a scatterGather()
. Or enrich()
twice.
Not sure what does it mean "send using claim check", but probably it is like claimCheckIn()
and then handle()
.
Your use-case is not so straight forward to have as a general sample solution. Therefore unlikely there is a sample for your request.
All the info you needed for Java DSL you can find in Docs: https://docs.spring.io/spring-integration/docs/current/reference/html/dsl.html#java-dsl or just read JavaDocs on the IntegrationFlowDefinition
methods to match them to required operator.
Upvotes: 1