Skip to content

Commit 291704d

Browse files
committed
Fix PDF Doc overflows
- what's new - no need for backticks in section 7 tables cols 1,2 are marked literal
1 parent 49f0a33 commit 291704d

File tree

2 files changed

+43
-43
lines changed

2 files changed

+43
-43
lines changed

src/reference/asciidoc/message.adoc

Lines changed: 41 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -75,30 +75,30 @@ The following table describes the pre-defined message headers:
7575
| Header Type
7676
| Usage
7777

78-
| `MessageHeaders.ID`
78+
| MessageHeaders.ID
7979
| java.util.UUID
8080
| An identifier for this message instance.
8181
Changes each time a message is mutated.
8282

83-
| `MessageHeaders.
84-
TIMESTAMP`
83+
| MessageHeaders.
84+
TIMESTAMP
8585
| java.lang.Long
8686
| The time the message was created.
8787
Changes each time a message is mutated.
8888

89-
| `MessageHeaders.
90-
REPLY_CHANNEL`
91-
| `java.lang.Object`
92-
(`String` or
93-
`MessageChannel`)
89+
| MessageHeaders.
90+
REPLY_CHANNEL
91+
| java.lang.Object
92+
(String or
93+
MessageChannel)
9494
| A channel to which a reply (if any) is sent when no explicit output channel is configured and there is no `ROUTING_SLIP` or the `ROUTING_SLIP` is exhausted.
9595
If the value is a `String`, it must represent a bean name or have been generated by a `ChannelRegistry.`
9696

9797
| MessageHeaders.
9898
ERROR_CHANNEL
99-
| `java.lang.Object`
100-
(`String` or
101-
`MessageChannel`)
99+
| java.lang.Object
100+
(String or
101+
MessageChannel)
102102
| A channel to which errors are sent.
103103
If the value is a `String`, it must represent a bean name or have been generated by a `ChannelRegistry.`
104104
|===
@@ -120,56 +120,56 @@ The following table describes the pre-defined message headers:
120120
| Header Type
121121
| Usage
122122

123-
| `IntegrationMessageHeaderAccessor.
124-
CORRELATION_ID`
125-
| `java.lang.Object`
123+
| IntegrationMessageHeaderAccessor.
124+
CORRELATION_ID
125+
| java.lang.Object
126126
| Used to correlate two or more messages.
127127

128-
| `IntegrationMessageHeaderAccessor.
129-
SEQUENCE_NUMBER`
130-
| `java.lang.Integer`
128+
| IntegrationMessageHeaderAccessor.
129+
SEQUENCE_NUMBER
130+
| java.lang.Integer
131131
| Usually a sequence number with a group of messages with a `SEQUENCE_SIZE` but can also be used in a `<resequencer/>` to resequence an unbounded group of messages.
132132

133-
| `IntegrationMessageHeaderAccessor.
134-
SEQUENCE_SIZE`
135-
| `java.lang.Integer`
133+
| IntegrationMessageHeaderAccessor.
134+
SEQUENCE_SIZE
135+
| java.lang.Integer
136136
| The number of messages within a group of correlated messages.
137137

138-
| `IntegrationMessageHeaderAccessor.
139-
EXPIRATION_DATE`
140-
| `java.lang.Long`
138+
| IntegrationMessageHeaderAccessor.
139+
EXPIRATION_DATE
140+
| java.lang.Long
141141
| Indicates when a message is expired.
142142
Not used by the framework directly but can be set with a header enricher and used in a `<filter/>` that is configured with an `UnexpiredMessageSelector`.
143143

144-
| `IntegrationMessageHeaderAccessor.
145-
PRIORITY`
146-
| `java.lang.Integer`
144+
| IntegrationMessageHeaderAccessor.
145+
PRIORITY
146+
| java.lang.Integer
147147
| Message priority -- for example, within a `PriorityChannel`.
148148

149149

150-
| `IntegrationMessageHeaderAccessor.
151-
DUPLICATE_MESSAGE`
152-
| `java.lang.Boolean`
150+
| IntegrationMessageHeaderAccessor.
151+
DUPLICATE_MESSAGE
152+
| java.lang.Boolean
153153
| True if a message was detected as a duplicate by an idempotent receiver interceptor.
154154
See <<idempotent-receiver>>.
155155

156-
| `IntegrationMessageHeaderAccessor.
157-
CLOSEABLE_RESOURCE`
158-
| `java.io.Closeable`
156+
| IntegrationMessageHeaderAccessor.
157+
CLOSEABLE_RESOURCE
158+
| java.io.Closeable
159159
| This header is present if the message is associated with a `Closeable` that should be closed when message processing is complete.
160160
An example is the `Session` associated with a streamed file transfer using FTP, SFTP, and so on.
161161

162-
| `IntegrationMessageHeaderAccessor.
163-
DELIVERY_ATTEMPT`
164-
| `java.lang.`
165-
`AtomicInteger`
162+
| IntegrationMessageHeaderAccessor.
163+
DELIVERY_ATTEMPT
164+
| java.lang.
165+
AtomicInteger
166166
| If a message-driven channel adapter supports the configuration of a `RetryTemplate`, this header contains the current delivery attempt.
167167

168-
| `IntegrationMessageHeaderAccessor.
169-
ACKNOWLEDGMENT_CALLBACK`
170-
| `o.s.i.support.`
171-
`Acknowledgment`
172-
`Callback`
168+
| IntegrationMessageHeaderAccessor.
169+
ACKNOWLEDGMENT_CALLBACK
170+
| o.s.i.support.
171+
Acknowledgment
172+
Callback
173173
| If a message source supports it, a call back to accept, reject, or requeue a message.
174174
See <<deferred-acks-message-source>>.
175175
|===

src/reference/asciidoc/whats-new.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -197,6 +197,6 @@ See <<http>> and <<webflux>> for more information.
197197
=== JMX Changes
198198

199199
Object name key values are now quoted if they contain any characters other than those allowed in a Java identifier (or period `.`).
200-
e.g. `org.springframework.integration:type=MessageChannel,name="input:foo.myGroup.errors"`.
200+
e.g. `org.springframework.integration:type=MessageChannel,` `name="input:foo.myGroup.errors"`.
201201
This has the side effect that previously "allowed" names, with such characters, will now be quoted.
202-
e.g. `org.springframework.integration:type=MessageChannel,name="input#foo.myGroup.errors"`.
202+
e.g. `org.springframework.integration:type=MessageChannel,` `name="input#foo.myGroup.errors"`.

0 commit comments

Comments
 (0)