Skip to content

Commit df1f260

Browse files
Jay Bryantartembilan
authored andcommitted
Wording changes
Replacing some terms
1 parent 6e11d4c commit df1f260

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
lines changed

src/reference/asciidoc/chain.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ The `<header-enricher>` element used in the preceding example sets a message hea
5454
A header enricher is a specialization of `Transformer` that touches only header values.
5555
You could obtain the same result by implementing a `MessageHandler` that did the header modifications and wiring that as a bean, but the header-enricher is a simpler option.
5656

57-
The `<chain>` can be configured as the last 'black-box' consumer of the message flow.
57+
The `<chain>` can be configured as the last "`closed-box`" consumer of the message flow.
5858
For this solution, you can to put it at the end of the <chain> some <outbound-channel-adapter>, as the following example shows:
5959

6060
====

src/reference/asciidoc/ip.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1259,7 +1259,7 @@ By default, the files are located on the classpath, but you can override this by
12591259

12601260
Starting with version 4.3.6, when you use NIO, you can specify an `ssl-handshake-timeout` (in seconds) on the connection factory.
12611261
This timeout (the default is 30 seconds) is used during SSL handshake when waiting for data.
1262-
If the timeout is exceeded, the process is aborted and the socket is closed.
1262+
If the timeout is exceeded, the process is stopped and the socket is closed.
12631263

12641264
[[tcp-ssl-host-verification]]
12651265
==== Host Verification

src/reference/asciidoc/jmx.adoc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -449,7 +449,8 @@ The MBeans are now registered during context initialization and unregistered whe
449449
[[jmx-mbean-shutdown]]
450450
===== Orderly Shutdown Managed Operation
451451

452-
The MBean exporter provides a JMX operation to shut down the application in an orderly manner, intended for use before terminating the JVM.
452+
The MBean exporter lets a JMX operation shut down the application in an orderly manner.
453+
It is intended for use before stopping the JVM.
453454
The following example shows how to use it:
454455

455456
====

src/reference/asciidoc/jpa.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -830,7 +830,7 @@ public class JpaJavaApplication {
830830
The JPA inbound channel adapter lets you poll a database to retrieve one or more JPA entities.
831831
The retrieved data is consequently used to start a Spring Integration flow that uses the retrieved data as message payload.
832832

833-
Additionally, you can use JPA outbound channel adapters at the end of your flow in order to persist data, essentially terminating the flow at the end of the persistence operation.
833+
Additionally, you can use JPA outbound channel adapters at the end of your flow in order to persist data, essentially stopping the flow at the end of the persistence operation.
834834

835835
However, how can you execute JPA persistence operations in the middle of a flow? For example, you may have business data that you are processing in your Spring Integration message flow and that you would like to persist, yet you still need to use other components further downstream.
836836
Alternatively, instead of polling the database using a poller, you need to execute JPQL queries and actively retrieve data, which is then processed in subsequent components within your flow.

src/reference/asciidoc/stream.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ java -jar my.jar < foo.txt
8282
----
8383
====
8484

85-
This approach lets the application terminate when the pipe is closed.
85+
This approach lets the application stop when the pipe is closed.
8686

8787
Four convenient factory methods are available:
8888

0 commit comments

Comments
 (0)