We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0aebcb7 commit c16bdd5Copy full SHA for c16bdd5
src/com/rabbitmq/client/Channel.java
@@ -52,6 +52,11 @@
52
* As such, applications may prefer using a {@link Channel} per thread
53
* instead of sharing the same <code>Channel</code> across multiple threads.
54
*
55
+ * An <b>important caveat</b> to this is that confirms are <b>not</b> handled
56
+ * properly when a {@link Channel} is shared between multiple threads. In that
57
+ * scenario, it is therefore important to ensure that the {@link Channel}
58
+ * instance is <b>not</b> accessed concurrently by multiple threads.
59
+ *
60
*/
61
62
public interface Channel extends ShutdownNotifier {
0 commit comments