File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
spring-integration-core/src/main/java/org/springframework/integration/dsl Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 25
25
* <p>
26
26
* The {@link StandardIntegrationFlow} implementation (produced by {@link IntegrationFlowBuilder})
27
27
* represents a container for the integration components, which will be registered
28
- * in the application context. Typically is used as a {@code @Bean} definition:
28
+ * in the application context. Typically, is used as a {@code @Bean} definition:
29
29
* <pre class="code">
30
30
* @Bean
31
31
* public IntegrationFlow fileReadingFlow() {
47
47
* .subFlowMapping(true, sf -> sf.<Integer>handle((p, h) -> p * 2))
48
48
* .subFlowMapping(false, sf -> sf.<Integer>handle((p, h) -> p * 3)))
49
49
* .aggregate()
50
- * .channel(MessageChannels.. queue("routerTwoSubFlowsOutput"));
50
+ * .channel(MessageChannels.queue("routerTwoSubFlowsOutput"));
51
51
* }
52
52
*
53
53
* </pre>
54
54
* <p>
55
- * Also this interface can be implemented directly to encapsulate the integration logic
55
+ * Also, this interface can be implemented directly to encapsulate the integration logic
56
56
* in the target service:
57
57
* <pre class="code">
58
58
* @Component
@@ -86,7 +86,7 @@ public interface IntegrationFlow {
86
86
87
87
/**
88
88
* Return the first {@link MessageChannel} component
89
- * which is essential a flow input channel.
89
+ * which is essentially a flow input channel.
90
90
* @return the channel.
91
91
* @since 5.0.4
92
92
*/
You can’t perform that action at this time.
0 commit comments