You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/reference/asciidoc/amqp.adoc
+3-2Lines changed: 3 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -213,9 +213,10 @@ There are three connection factories to chose from
213
213
214
214
The first two were added in version 2.3.
215
215
216
-
For most use cases, the `PooledChannelConnectionFactory` should be used.
216
+
For most use cases, the `CachingConnectionFactory` should be used.
217
217
The `ThreadChannelConnectionFactory` can be used if you want to ensure strict message ordering without the need to use <<scoped-operations>>.
218
-
The `CachingConnectionFactory` should be used if you want to use correlated publisher confirmations or if you wish to open multiple connections, via its `CacheMode`.
218
+
The `PooledChannelConnectionFactory` is similar to the `CachingConnectionFactory` in that it uses a single connection and a pool of channels.
219
+
It's implementation is simpler but it doesn't support correlated publisher confirmations.
219
220
220
221
Simple publisher confirmations are supported by all three factories.
0 commit comments